1

我想在我的 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>
4

1 回答 1

2

如果 AdMob 说您的应用状态为“活动”,则表示您的代码一切正常,并且您的应用正在向 admob 发送请求。问题是由于某种原因没有适合您的广告。
正如你所说,它是活跃的,我会试试这个:

点击您应用的“管理设置”(在 AdMob > 网站和应用中),然后选择“应用设置”选项卡并选择

“使用关键字定位广告和 Google 认证的广告网络 (GCAN) 来提高填充率。”

这样,您将有更多机会展示一些广告。

您将在站点和应用程序页面收到此消息:

恭喜您启用了 Google AdSense 广告!您帐户中的应用已启用以投放 Google AdSense 广告。对于任何未填充的广告请求,AdMob 将尝试投放 Google AdSense 广告以帮助提高您的填充率。您无需进一步更改。

这对我有帮助。我没有收到广告,现在它工作得很好。也许这会对某人有所帮助。

于 2012-09-03T21:10:45.790 回答