如何在每次点击按钮上显示插页式广告3次?

时间:2017-11-04 17:14:17

标签: java android

如何每次点击按钮显示插页式广告3次?

public void countIN (View view) {
counter++;
showValue.setText(Integer.toString(counter));
if (counter == 3) {
    if (mInterstitialAd.isLoaded()) {
        mInterstitialAd.show();
    }
}else {

}}

我使用我的代码,并尝试在我的应用中显示插页式广告,但我的插页式广告只展示了1次。 我希望每次点击都显示我的插页式广告3次

1 个答案:

答案 0 :(得分:0)

重置计数器

if (counter == 3) {
    if (mInterstitialAd.isLoaded()) {
        mInterstitialAd.show();
    }
    counter = 0
}

或使用modulo

if (counter % 3 == 0) {
    if (mInterstitialAd.isLoaded()) {
        mInterstitialAd.show();
    }
}