0

我正在为 Android 中的 Admob 工作,并成功获得了测试广告。但是,当我将我的测试 UnitId 更改为 Live UnitID 类似这样的“/5479/ctv.abcd.ca/myid”时,我会收到类似“您的单元 ID 正确吗?”的警告。我还评论了添加测试设备的行。但我仍然没有看到任何真正的添加。

任何想法......任何更好的解决方案......

    LinearLayout lladView = (LinearLayout) inflater.inflate(R.layout.addmob, null);
    AdView adView = (AdView) lladView.findViewById(R.id.adView1);
    adView.loadAd(new AdRequest());

我的xml是

    <?xml version="1.0" encoding="utf-8"?>
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
     android:layout_width="wrap_content"
     android:layout_height="wrap_content"
     android:orientation="vertical" >

    <com.google.ads.AdView
    xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
    android:id="@+id/adView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    ads:adSize="BANNER"
    ads:adUnitId="/5479/ctv.abcd.ca/myid"
    ads:loadAdOnCreate="true"/>
   </LinearLayout>
4

1 回答 1

1

您似乎提供了错误的adUnitId. 您必须指定您的 AdMob 发布商 ID,该 ID 可从 AdMob 网站和应用 -> [您的应用名称] -> 管理设置中获取。 第1步

第2步

于 2013-02-27T05:24:15.077 回答