Googleで何時間も検索していますが、まだ成功していません。広告の読み込みに失敗しました(エラー1)
There was a problem getting an ad response. ErrorCode: 1
Failed to load ad: 1
build.gradle
compile 'com.android.support:appcompat-v7:24.0.0'
compile 'com.google.android.gms:play-services-ads:9.4.0'
Androidのマニフェスト
<activity
android:name="com.google.android.gms.ads.AdActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"
android:theme="@android:style/Theme.Translucent"
/>
レイアウト
<com.google.android.gms.ads.AdView
android:id="@+id/adView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
ads:adSize="BANNER"
android:layout_marginTop="20dip"
ads:adUnitId="pub-*****************"
android:layout_below="@+id/middle"
android:layout_alignParentRight="true"
android:layout_alignParentEnd="true" />
activit: 私は常にエラーメッセージとadBanner doesntの負荷を取得しますY(輸入)
import com.google.android.gms.ads.AdRequest;
import com.google.android.gms.ads.AdView;
活性
AdView adView = (AdView)findViewById(R.id.adView);
AdRequest adRequest = new AdRequest.Builder().build();
adView.loadAd(adRequest);
アクセス許可は、エラーコード1が要求を無効指す予め
追加ユニットIDをダブルチェックしてください:「ca-app-pub -...」のように見えるはずです。 – manfcas
ええ私も....この1つのCA-アプリ-pubを試してみましたが、didntの仕事でもない: 'MobileAds.initialize(getApplicationContextを():/ –
ちょうど次のようにあなたがGoogleモバイル広告SDKを初期化しているかどうかをチェックします、getString(R.string.admobs_app_id)); ' –