几天前,Admob停止在我的一个应用程序中投放广告,因为它鼓励用户意外点击
这是我的代码:
interstitial = new InterstitialAd(this);
interstitial.setAdUnitId(getResources().getString(R.string.interstitial_ad_unit_id));
AdRequest adRequest2 = new AdRequest.Builder().build();
interstitial.loadAd(adRequest2);
interstitial.setAdListener(new AdListener() {
@Override
public void onAdLoaded() {
displayInterstitial();
}
});
和
public void displayInterstitial() {
if (interstitial.isLoaded()) {
interstitial.show();
}
这是否应该预先加载非页内广告!?