안드로이드 개발 질문/답변
(글 수 45,052)
지시하는 대로 정확히 따라했습니다. 그런데 admob이 나타나지 않습니다. 에러도 나지 않고요. 레이아웃 main.xml 파일은 다음과 같습니다.
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:myapp="http://schemas.android.com/apk/res/com.pjk.android"
android:orientation="vertical" android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
>
<com.admob.android.ads.AdView
android:id="@+id/ad"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
myapp:backgroundColor="#000000"
myapp:primaryTextColor="#FFFFFF"
myapp:secondaryTextColor="#CCCCCC"
/>
</LinearLayout>
<ListView android:padding="2px" android:id="@+id/android:list"
android:orientation="vertical" android:layout_width="fill_parent"
android:layout_height="400dip" android:background="#FFF5D9"
android:divider="#FFD047" android:dividerHeight="1px"
android:cacheColorHint="#00000000" />
</LinearLayout>
실행시켜보니 리스트뷰는 잘 표시되는데 admob은 보이지 않습니다. 공간도 전혀 차지하지 않고요. 검은 막대같은 것도 없어요. 안드로이드 플랫폼 버전은 2.2입니다. 혹시 아시는 분 계신가요?
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:myapp="http://schemas.android.com/apk/res/com.pjk.android"
android:orientation="vertical" android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
>
<com.admob.android.ads.AdView
android:id="@+id/ad"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
myapp:backgroundColor="#000000"
myapp:primaryTextColor="#FFFFFF"
myapp:secondaryTextColor="#CCCCCC"
/>
</LinearLayout>
<ListView android:padding="2px" android:id="@+id/android:list"
android:orientation="vertical" android:layout_width="fill_parent"
android:layout_height="400dip" android:background="#FFF5D9"
android:divider="#FFD047" android:dividerHeight="1px"
android:cacheColorHint="#00000000" />
</LinearLayout>
실행시켜보니 리스트뷰는 잘 표시되는데 admob은 보이지 않습니다. 공간도 전혀 차지하지 않고요. 검은 막대같은 것도 없어요. 안드로이드 플랫폼 버전은 2.2입니다. 혹시 아시는 분 계신가요?
2010.11.02 09:30:50
광고를 받지 못했을때는 공간을 전혀 차지하지 않더군요.
admob 사이트 설정에서 성인광고도 나오도록 설정하시고 테스트 해보시면 좀 더 잘뜰겁니다.
2010.11.05 17:27:16
저도 이 문제로 고생이 많았습니다.
상세한 내용을 제 블로그에 넣었습니다. 참고 되시면 좋겠습니다. http://loveroid.tistory.com/4




해당 코드를 추가하고 에물레이터로 실행시켜보세요.
검색해보시면 아시겠지만 광고가 항상 무조건 나오는 건 아닌 것 같더라구요.
해당 어플에 맞는 광고가 없을 경우에는 광고가 안나오는 경우가 많은 것 같습니다^^;
AdManager 에 몇 가지 public 함수 들이 있으니 검색해보셔서 숙지해 놓는 것도 좋겠죠.