如何在下一个方法调用之前显示整个admob影片剪辑,以及如果用户按下后退按钮或用户关闭广告,下一个方法将无法启动。

“交叉广告效果很好。”

我的代码示例:

public void freeGoldOrNot(){

    if (mInterstitialAd.isLoaded()) {
        mInterstitialAd.show();

       //Start this after the entire mInterstitialAd is shown
       // if not, do not call
       beginPlayingGame();

    else{
       Toast.makeText(getApplicationContext(), "Try again!",   Toast.LENGTH_SHORT).show();

    }

}

最佳答案

您需要使用AdListener来了解用户何时关闭广告。
在关闭的广告上开始游戏。

但是您的客户不会喜欢这种操作方式。

10-04 23:17