私の広告は表示されません。私はそれらをwebviewアプリケーションに追加しようとしています。これはmain.xmlコードです:Admobがwebviewに表示されない
<?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:layout_width="wrap_content"
android:layout_height="match_parent"
android:orientation="vertical" >
<com.google.ads.AdView android:id="@+id/adView"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
ads:adUnitId="a14f3ed10a5e4eb"
ads:adSize="BANNER"
ads:testDevices="TEST_EMULATOR, TEST_DEVICE_ID"
ads:loadAdOnCreate="true"/>
<WebView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/webview"
android:layout_width="fill_parent"
android:layout_height="match_parent"
/>
</LinearLayout>
何か提案がありますか?
。 wtf?!?! –
いくつかのログファイルをadmobクラスに追加して、問題が発生していないかどうかを確認してください。 –
デバイスでデバッグするときに、どのlogcat出力を得ますか?おそらく「広告リクエストが成功しましたが、広告枠がないために広告が返されません」という行があります。 'ads:testDevices =" TEST_EMULATOR、TEST_DEVICE_ID "と言うことで、エミュレータがテスト広告を取得していることを意味します。デバイスにテスト広告を表示するには、TEST_DEVICE_IDを実際のテストデバイスIDに置き換える必要があります。このIDは、デバッグ時にlogcat出力にも表示されます(「このデバイスでテスト広告を取得するには、AdRequest.addTestDevice( "your_device_id");」を追加してください)。 –