我在 Android 应用程序中显示广告时遇到问题。即使在测试模式下我也没有看到广告。
布局取自 admob 的说明,如下所示:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res/lgf.fourinarow"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<com.admob.android.ads.AdView
android:id="@+id/ad"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
app:backgroundColor="#000000"
app:primaryTextColor="#FFFFFF"
app:secondaryTextColor="#CCCCCC"
app:keywords="Android Game"
/>
</LinearLayout>
主要内容如下:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="lgf.fourinarow"
android:versionCode="1"
android:versionName="1.0">
<!-- Requires Android 2.1 or above -->
<uses-sdk android:minSdkVersion="7" />
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".LGFFourInARow">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<!-- Track Market installs -->
<receiver android:name="com.admob.android.ads.analytics.Inst allReceiver" android:exported="true">
<intent-filter>
<action android:name="com.android.vending.INSTALL_REFERRER " />
</intent-filter>
</receiver>
<!-- The application's publisher ID assigned by AdMob -->
<meta-data android:value="xxxxxxxxxxxxxx" android:name="ADMOB_PUBLISHER_ID"/>
</application>
<!-- AdMob SDK permissions -->
<uses-permission android:name="android.permission.INTERNET" />
</manifest>
(我的代码中有我的真实发布者 ID)在我的 Java 代码中,我已包含AdManager.setTestDevices(new String[] { AdManager.TEST_EMULATOR } );
在该onCreate
部分中,以启用测试模式。我还在 、 和 函数中添加onFailedToReceiveAd
了onFailedToReceiveRefreshedAd
日志消息onReceiveAd
。onReceiveRefreshedAd
但是我仍然见过广告,并且在 log cat 中看不到任何输出。谁能建议我还应该做什么?