私はadmobを1年以上使用していましたが、sdkを更新してから広告を取得できません。次のコードをxmlファイルに
<com.google.ads.AdView
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
android:id="@+id/adView"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10px"
ads:adSize="BANNER"
ads:adUnitId="a14d3813d4df3d5d" />
そして私の活動のこのコード:
AdView adView = (AdView)this.findViewById(R.id.adView);
AdRequest adRequest = new AdRequest();
adRequest.setTesting(true);
adView.loadAd(adRequest);
どこが間違っているのですか?もっと何かしてもいいですか?どうもありがとう、私はそれを解決するために何時間も費やしました..:)