我的应用程序中有一个 Activity 。现在,我想添加一个Admob插页式横幅。不幸的是,当用户关闭广告时,旧 Activity 也被关闭。

我添加了以下内容:

 interstitial = new InterstitialAd(this, "*************");
        // Create ad request
        AdRequest adRequest = new AdRequest();
        // and begin loading your interstitial
        interstitial.loadAd(adRequest);
        interstitial.setAdListener(this);

然后使用
if (interstitial.isReady()){
interstitial.show();
}

该应用程序的表示工作正常。

我该怎么办才能解决问题?

最佳答案

您的AndroidManifest.xml文件中有一个属性,例如 android:noHistory =“true” ,您必须删除它。它解决了问题

08-18 08:28