在动画停止 n 次后,广告会显示,但只会触发一次。如何实现每n次重复展示广告。
public void onAnimationEnd(Animation animation) {
if (++counter == 3) {
mInterstitialAd.show();
counter = 0;
}
}
广告代码:
private InterstitialAd mInterstitialAd;
private static int counter=0;
mInterstitialAd = new InterstitialAd(this);
mInterstitialAd.setAdUnitId("ca-app-pub-9225307158641311/329999999999");
mInterstitialAd.loadAd(new AdRequest.Builder().build());
事实证明,广告在 1 次显示后被破坏,我们设法修复它: