作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
目前,我的主页有 10 个按钮,每个按钮都有插页式广告。
if (mInterstitialAd.isLoaded()) {
mInterstitialAd.show();
} else {
Intent intent = new Intent(this, magic.class);
startActivity(intent);
}
为每个新的 intent
加载插页式广告有点过分了。我如何操纵插页式广告在每 5 个 Intent 后加载?
最佳答案
创建一个整数
private int showbigad =0;
在 OnCreate 中...
SharedPreferences prefs = getSharedPreferences(MY_PREFS_NAME, MODE_PRIVATE);
String restoredText = prefs.getString("text", null);
if (restoredText != null) {
int advalue = prefs.getInt("showad", 0);
showbigad=advalue;
}
现在每次点击我们都会添加到 showbigad
EACHONEOFYOURBUTTONS.onClick....{
showbigad =showbigad+1;
SharedPreferences.Editor editor = getSharedPreferences(MY_PREFS_NAME, MODE_PRIVATE).edit();
editor.putInt("showad", showbigad);
editor.commit();
}});
现在,如果按钮被点击超过 4 次,插页式广告就会显示
if (mInterstitialAd.isLoaded()&& showbig>4) {
mInterstitialAd.show();
} else {
Intent intent = new Intent(this, magic.class);
startActivity(intent);
}
关于android - 如何更改插页式广告的频率,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29886765/
我是一名优秀的程序员,十分优秀!