我正在尝试使用 listView 将 adView 添加到我的布局中,但由于某种原因,adview 没有显示。它适用于其他活动,但不会显示在带有 listView 的活动上。这是我正在使用的代码:
<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>
有任何想法吗?