我試圖用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>
任何想法?