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();
}
});