私は Android で Admob に取り組んでおり、テスト広告の取得に成功しました。しかし、テスト UnitId を "/5479/ctv.abcd.ca/myid" のような Live UnitID に変更すると、"is your unit id correct?" のような警告が表示されます。また、テストデバイスを追加するための行にコメントしました。しかし、まだ実際の追加は見られません。
任意のアイデア.....任意のより良い解決策..
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>