我跟踪了关于如何添加广告的文件,然而我似乎遗漏了某些东西,因为样本应用程序正在起作用。 广告账户报告说,我的应用程序正在请求发布广告,我在记录簿中看到这些请求,但广告没有出现。
这是Create的代码:
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>
在机器人操纵器中,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"/>
我错过了什么?
我同时附上一个记录簿
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()