我有一個Android應用程序,我正在嘗試向其中添加AdMob插頁式廣告。我創建它們這樣AdMob插頁式廣告未在Android上顯示
interstitial = new InterstitialAd(this);
interstitial.setAdUnitId(getResources().getString(R.string.ad));
interstitial.loadAd(AdUtils.createRequest());
而當那一刻是合適的,我告訴他們這樣的:
if(interstitial.isLoaded()) {
interstitial.show();
}
當我在模擬器上測試該代碼,一切都很好。但是當我在真實設備上運行它時,它經常(大約一半的節目)僅顯示黑屏,並且關閉按鈕並且根本沒有廣告圖像。有沒有解決這個問題的方法?
請嘗試下面的代碼,讓我知道它是否工作與否。 – InnocentKiller