Я программирую приложение и использую рекламный блок Interstitial (с Google-AdMob).
Я хочу запрограммировать его так, чтобы оно автоматически закрывалось через определенное время.
Это код, о котором я говорил:
private void showInterstitial() {
// Show the ad if it's ready. Otherwise toast and reload the ad.
if (mInterstitialAd != null && mInterstitialAd.isLoaded()) {
mInterstitialAd.show();
try {
Thread.sleep(1);
} catch (InterruptedException e) {
e.printStackTrace();
}
//here I need to close the ad