我在Android中有插页式广告的问题。当应用程序启动时,广告会显示,然后当用户移至另一个活动并返回主活动时,广告会再次显示。我应该怎么做,广告只在主要活动中显示一次,即使用户转移到另一个活动,也不会再次显示直到下次重启?谢谢!这是我的代码:
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.tabpmnth_xm);
// Create the interstitial.
interstitial = new InterstitialAd(this);
interstitial.setAdUnitId("ca-app-pub-xxxxxxxxxxxx8x/x2xxxxxxxx");
AdRequest aadRequest = new AdRequest.Builder()
.build();
// Begin loading your interstitial.
interstitial.loadAd(aadRequest);
interstitial.setAdListener(new AdListener(){
public void onAdLoaded(){
displayInterstitial();
}
});
public void displayInterstitial() {
if (interstitial.isLoaded()) {
interstitial.show();
}
}
答案 0 :(得分:1)
为您的应用创建一个Application类并执行此操作
public class MyApplication extends Application{
@Override
public void onCreate(){
super.onCreate();
PreferenceManager.getDefaultSharedPreferences(this).edit().putBoolean("ShowInterstitial", TRUE).apply();
}
}
然后在你的主要活动中
public void displayInterstitial() {
SharedPreferences sp = PreferenceManager.getDefaultSharedPreferences(this);
if (interstitial.isLoaded() && sp.getBoolean("ShowInterstitial", true)){
interstitial.show();
PreferenceManager.getDefaultSharedPreferences(this).edit().putBoolean("ShowInterstitial", false).apply();
}
}