我正在我的应用中实现 InterstitialAd,并按照 Google 代码示例来实现广告。
问题:
广告大部分时间无法正常显示。我已经设置了所有活动以及 Manifest 中的 AdActivity,迫使它们定向为纵向。然而它仍然失败。有没有人知道是什么问题?万谢!
PS:我不是在这里宣传任何广告..只是为了在这里为我遇到的问题截屏
没事的时候做广告:
但大多数时候它不在屏幕上:它变成水平的,底部有白色的空白屏幕
代码:
interstitialAd = new InterstitialAd(this, MY_PUBLISHER_ID);
interstitialAd.setAdListener(this); // Set the AdListener.
AdRequest adRequest = new AdRequest();
adRequest.addTestDevice(AdRequest.TEST_EMULATOR);
interstitialAd.loadAd(adRequest);
显现:
<application
android:icon="@drawable/logo"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".Abc"
android:screenOrientation="portrait"
android:label="@string/title_activity_startup" >
<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:screenOrientation="portrait"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"/>