如何每次点击按钮显示插页式广告3次?
public void countIN (View view) {
counter++;
showValue.setText(Integer.toString(counter));
if (counter == 3) {
if (mInterstitialAd.isLoaded()) {
mInterstitialAd.show();
}
}else {
}}
我使用我的代码,并尝试在我的应用中显示插页式广告,但我的插页式广告只展示了1次。 我希望每次点击都显示我的插页式广告3次
答案 0 :(得分:0)
重置计数器
if (counter == 3) {
if (mInterstitialAd.isLoaded()) {
mInterstitialAd.show();
}
counter = 0
}
或使用modulo
if (counter % 3 == 0) {
if (mInterstitialAd.isLoaded()) {
mInterstitialAd.show();
}
}