如何获取Android AdMob广告的testDevice ID

时间:2012-07-28 21:28:17

标签: android android-layout admob

  

可能重复:
  How can I get device ID for Admob

我的活动有一个ListView,我在底部放了一个广告。当我在模拟器上运行应用程序时,我会看到测试广告。当我在手机上播放时,我会收到一个实际的广告。我想在我的手机上进行测试而不是真正的广告。

我按照AdMob网站上的说明了解了如何在logcat中查找如何手动将设备ID添加到AdRequest的消息。问题是这条消息永远不会出现在logcat中。这是一个运行4.1的RAZR。在SO帖子answered by Aracem中,我读到编码字符串在Developer Options首选项面板中可用,我找到了它。当我读取guide for this command时,设备ID的格式是字母数字(例如“E83D20734F72FB3108F104ABC0FFC738”),但我手机中的值包含字母,数字和短划线(例如“MQKF-RB61-BBKS-E”)

我已将编码的设备ID添加到XML googleads:testDevices 中,我还手动将AdRequest添加到我的onCreate中,并将addTestDevice与此字符串一起使用。都没有工作。

我注意到的一件事是,有效的命名空间是 googleads ,而不是 ads ,如示例所示。当我使用 ads 时,我在XML中遇到前缀错误。我猜测从4.x切换到6.1,命名空间发生了变化。

我可以通过最小的项目实现这一点,其中onCreate除了调用super和setContentView之外什么都不做。

布局:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/mainLayout"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<ListView
    android:id="@+id/list"
    android:layout_above="@+id/adView"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" />
<com.google.ads.AdView
    xmlns:googleads="http://schemas.android.com/apk/lib/com.google.ads"
    android:id="@id/adView"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:layout_centerHorizontal="true"
    googleads:adSize="BANNER"
    googleads:adUnitId="@string/admob_id"
    googleads:loadAdOnCreate="true"
    googleads:testDevices="TEST_EMULATOR, MQKF-RB61-BBKS-E" />

清单

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-sdk android:minSdkVersion="10" android:targetSdkVersion="16" />
<application android:label="@string/app_name" >
    <activity
        android:name="mainActivity"
        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|smallestScreenSize" />
</application>

1 个答案:

答案 0 :(得分:8)

在Logcat中,您将找到设备ID。你会看到像

这样的东西

要在此设备上投放测试广告,请致电adRequest.addTestDevice(“ * *”)