我已按照有关如何添加广告的文档,但我似乎遗漏了一些内容,因为示例应用正在运行。 admob帐户报告我的应用程序正在请求广告,我在logcat中看到请求,但广告没有显示。
这是onCreate的代码:
this.adView = new AdView(this, AdSize.BANNER, MY_UNIT_ID);
LinearLayout layout = (LinearLayout) findViewById(R.id.appLayout);
layout.addView(adView);
AdRequest ad = new AdRequest();
ad.addTestDevice("DEVICE_ID");
this.adView.loadAd(ad);
这是我的布局:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:id="@+id/appLayout"
>
<ListView
android:id="@+id/myListView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:scrollbars="vertical"
>
</ListView>
</LinearLayout>
在AndroidManifest.XML中:
我宣布了2个必要的持续时间:
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
和活动:
<activity android:name="com.google.ads.AdActivity" android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"/>
我错过了什么?
编辑:我也附加了一个logcat
05-26 21:04:01.761: I/Ads(6186): adRequestUrlHtml: removed requestHtml also
05-26 21:04:02.171: I/Ads(6186): Received ad url: removed ad url from here
05-26 21:04:02.752: I/Ads(6186): onReceiveAd()
答案 0 :(得分:0)
这是因为,您的视图不可见,您的ListView我们占用了所有空间。请改变它会起作用。
答案 1 :(得分:0)
好吧看来,我也实现了onResume()。如果您同时执行onCreate和onResume,则应在此处完成整个广告加载。