i had success Implementation interstitial ads admob but i have 1 problem, why interstitial ads always show every second on my app, so i cannot play my app because this interstitial ads
any want help me how to make interstitial ads show only 1 interstitial ads every app lauch
here my code on my app Activity :
public class Activity extends Activity implements AdListener {
WebView mWebView;
private InterstitialAd interstitial;
.......
interstitial = new InterstitialAd(this, "a15xxxxxxxxxx");
AdRequest adRequest = new AdRequest();
interstitial.loadAd(adRequest);
interstitial.setAdListener(this);
.......
public void onReceiveAd(Ad ad) {
Log.d("OK", "Received ad");
if(interstitial.isReady()) {
interstitial.show();
}
}