0

出于某种原因,在测试模式下运行 AdMob 时,我什么也没得到。任何人都可以看到明显的错误吗?

XML:

<?xml version="1.0" encoding="UTF-8"?>
    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent" >


    <com.google.ads.AdView android:id="@+id/ad"
                           android:layout_width="wrap_content"
                           android:layout_height="wrap_content"
                           ads:adSize="BANNER"
                           ads:adUnitId="AD_ID"
                           ads:testDevices="TEST_EMULATOR,TEST_EMULATOR, DEVICE_ID"
                           ads:loadAdOnCreate="true"/>        

        <ImageView
            android:id="@+id/image"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_centerHorizontal="true"
            android:layout_centerVertical="true"
            android:src="@android:drawable/alert_light_frame" />

    </RelativeLayout>

然后我的活动中没有任何内容,因为 loadAdOnCreate 是真的。

4

2 回答 2

2

所以我弄清楚了问题所在!我在 2.3 手机上运行它,它低于 AdMob 所需的 Android 版本。当我在 4.0 VM 中运行它时,它运行良好!

我给那些试图找出他们的 AdMob 问题的人的建议:以直接的 XML 方式(代码上方)使用它,因为这会排除 Java 的任何问题。然后在虚拟机而不是物理设备中尝试,并阅读 LogCat 以查找任何问题。希望这可以帮助!

于 2012-05-25T18:27:21.547 回答
1

您需要指定您的

ads:adUnitId="AD_ID"

您可以在您的 admob 帐户中获取它。应该看起来像

ads:adUnitId="a123456ff123456"

没有您的 id,AdMob 将不会为您提供任何广告

于 2013-05-03T13:37:42.873 回答