Android ゲームに AdMob コードを追加しましたが、広告が表示されません。LogCat と広告が受信されていることを確認し、AdMob アカウントとゲームが緑色になっていることを確認しました。リクエストは 100% のフィル率で良好です。xml には触れず、onCreate だけに触れました。xml などでできることがあれば教えてください。すべての権限をマニフェストに入れました。見て、助けてください、すでに10日間トラブルを抱えています。ありがとうございました
私のコード:
Window window = getWindow();
RelativeLayout adsLayout = new RelativeLayout(this);
RelativeLayout.LayoutParams lp2 = new RelativeLayout.LayoutParams(
RelativeLayout.LayoutParams.WRAP_CONTENT, RelativeLayout.LayoutParams.MATCH_PARENT);
// Displays Ads at the bottom of your sketch, use Gravity.TOP to display them at the top
adsLayout.setGravity(Gravity.TOP);
AdView adView = new AdView(this, AdSize.BANNER, "myid"); // add your app-id
adsLayout.addView(adView);
AdRequest newAdReq = new AdRequest();
//Remark: uncomment next line for testing your Ads (fake ads)
newAdReq.setTesting(false);
adView.loadAd(newAdReq);
window.addContentView(adsLayout,lp2);
Android マニフェスト:
<application android:icon="@drawable/icon" android:label="@string/app_name" android:debuggable="false">
<activity android:name=".MYGAMENAME"
android:label="@string/app_name"
android:screenOrientation="landscape"
android:configChanges="orientation|screenLayout">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name="com.google.ads.AdActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"/>
</application>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<uses-permission android:name="android.permission.INTERNET"/>
私のMain.xml:
xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent"