我需要使用ListView在Activity底部实现AdMob的AdView。我成功地将AbView添加到我的布局中。我的布局文件如下所示:
<RelativeLayout 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"
android:id="@+id/archiveLayout"
android:background="#FFFFFF"
>
<ListView
android:id="@android:id/list"
android:layout_alignParentTop="true"
android:layout_width="fill_parent"
android:layout_above="@+id/adView"
android:background="#000000"
android:layout_height="wrap_content"
/>
<TextView android:id="@android:id/empty"
android:gravity="center|center"
android:textColor="#FFFFFF"
android:textSize="20sp"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:text="You havn't received any quote yet!"
/>
<com.google.ads.AdView android:id="@+id/adView"
android:layout_width="320dip"
android:layout_height="50dip"
ads:adUnitId="ID"
ads:adSize="BANNER"
ads:loadAdOnCreate="true"
android:layout_alignParentBottom="true"/>
这就是我在活动的onCreate中添加它的方法:
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.archive_list);
setListAdapter(new QuoteAdapter(this,
android.R.layout.simple_list_item_1, reverse(getContentDatabase(this))));
AdView adView = (AdView)this.findViewById(R.id.adView);
adView.setEnabled(true);
adView = new AdView(this, AdSize.BANNER, "ID");
AdRequest re = new AdRequest();
re.addTestDevice(AdRequest.TEST_EMULATOR);
re.addTestDevice("E83D20734F72FB3108F104ABC0FFC738");
adView.loadAd(re);
}
在屏幕底部显示正确的宽度和高度。但其中没有内容。只是黑色的空屏幕。请告诉我,我能用它做什么。
答案 0 :(得分:0)
我发现只在xml文件中添加它会容易得多。看起来你把这两种方式融合在了一起。你有广告:启用了loadOnCreate,你也在以编程方式创建一个新广告。尝试只使用XML方式,它在页面启动时加载,并且我使用xml only方法获得100%填充率。如果您只是在xml adview显示时尝试显示它,则无需复杂化。
答案 1 :(得分:0)
问题在于我没有收到ads:adUnitId
。当我使用admob site进行操作时,一切正常。