我想在我的Android应用中测试我的admob广告,但广告无法显示。并且在logcat中找不到任何错误。我也可以从Admob找到广告的成功请求。 我使用“X”来表示我的发布ID。
package com.admob.test;
import android.app.Activity;
import android.os.Bundle;
public class AdmobTestActivity extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
}
}
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.admob.test"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk android:minSdkVersion="4" />
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<activity
android:name=".AdmobTestActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name="com.google.ads.AdActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|s mallestScreenSize" />
</application>
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
</manifest>
<?xml version="1.0" encoding="utf-8"?>
<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="xxxxxxxxxxxxxxx"
ads:adSize="BANNER"
ads:testDevices="C904358AFB272CDFA888A5C1CB914DA4"
ads:loadAdOnCreate="true"/>
</LinearLayout>
答案 0 :(得分:2)
如果AdMob说您的应用状态为“有效”,则表示您的代码一切正常,您的应用正在向admob发送请求。问题是由于某种原因,没有广告给你 正如你所说的那样,我会尝试这个:
点击应用的“管理设置”(在AdMob&gt;网站和应用),然后选择应用设置标签,然后选择
“使用以关键字定位的广告和Google认证的广告网络(GCAN) 提高填充率。“
这样您就有更多机会展示广告。
您将在“站点与网站”中收到此消息。应用页面:
Google AdSense广告已启用祝贺!您帐户中的应用有 已启用投放Google AdSense广告。对于任何未填充的广告请求, AdMob将尝试投放Google AdSense广告,以帮助改进您的广告 填充率。您无需进一步更改。
这对我有帮助。我没有收到广告,现在它完美无缺。 也许这会对某人有所帮助。