0
我試圖在啓動活動時加載interstital廣告和橫幅廣告。橫幅廣告工作正常,但interstital廣告只是沒有顯示。誰能幫我?這是我的onCreate()void的代碼。Interstital廣告不會加載
AdView adView = (AdView) this.findViewById(R.id.adView);
AdRequest adRequest = new AdRequest.Builder().build();
adView.loadAd(adRequest);
interstitial = new InterstitialAd(this);
interstitial.setAdUnitId(getString(R.string.bigAdID));
adRequest = new AdRequest.Builder().build();
interstitial.loadAd(adRequest);
if(interstitial.isLoaded()){
interstitial.show();}
感謝