I am using this code to show load an add
AdRequest interstitialRequest = new AdRequest.Builder().build();
interstitialAd.loadAd(interstitialRequest);
and this to show it
interstitialAd.show();
What way do you recommend to chain this 2 events. The goal is to automatically present an interstitial ad every 60s. Something like calling a function loadAd()
, and once loading is done, it shows it. Basically I some kind of listener that gets triggered when the ad is loaded and ready to display.