문제

Hello i got a webview project.I wanna add interstitials ads for my project.i have a banner ads but i wanna add one more full screen ads.how can i do this ? anyone help me ? my xml have a only webview (webView) and ads (adsView).thanks all right.

도움이 되었습니까?

해결책

add the following lines of code in your activity

   interstitial = new InterstitialAd(this);
  interstitial.setAdUnitId("ca-app-pub-6046034785851961/xxxxxx");

   // Create ad request.
    AdRequest adRequest = new AdRequest.Builder().build();

     // Begin loading your interstitial.
     interstitial.loadAd(adRequest);


      interstitial.setAdListener(new AdListener(){
      public void onAdLoaded(){
           displayInterstitial();
      }
      });
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top