내보기에 listView를 사용하여 adView를 추가하려고하지만 어떤 이유로 adview가 표시되지 않습니다. 그것은 다른 활동에서 작동하지만 listView가있는 활동에는 나타나지 않습니다.목록보기가있는 레이아웃에 추가 할 때 Adview가 보이지 않음
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<com.google.ads.AdView android:id="@+id/adView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
ads:adUnitId="ID"
ads:adSize="BANNER"
ads:loadAdOnCreate="true"/>
<ListView android:id="@+id/listView1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"/>
</LinearLayout>
어떤 아이디어 : 이것은 내가 사용하고 코드는?