我很难将 Admob 横幅集成到我的游戏中。我使用了 simple-xml-2.6.2.jar 库,因为我认为它很容易在我的游戏中实现。现在我有一个布局文件,其中包含发布者 ID 和测试设备的正确代码:
<?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="xxxxxxxxxxx"
ads:adSize="BANNER"
ads:testDevices="TEST_EMULATOR, zzzzzzzzzzzz"
ads:loadAdOnCreate="true"/>
</LinearLayout>
游戏以横向模式运行,我希望您将广告显示为顶部或底部的横幅,但没有显示任何测试广告,我不知道为什么会这样. 任何帮助都将不胜感激!