布局鼓励意外点击 – 插页式广告:

本教程将介绍布局鼓励意外点击 - 插页式广告:的处理方法,这篇教程是从别的地方看到的,然后加了一些国外程序员的疑问与解答,希望能对你有所帮助,好了,下面开始学习吧。

布局鼓励意外点击 - 插页式广告: 教程 第1张

问题描述

Please any one help Now my app has disable by admob due to wrong interstitial code as

"Interstitial ads that load unexpectedly while a user is viewing the
app’s content".

what to do? Please some one correct me...

 import android.os.Bundle;
 import android.view.Window;
 import android.view.WindowManager;
 import android.support.v7.app.AppCompatActivity;
 import android.webkit.WebSettings;
 import android.webkit.WebView;
 import android.webkit.WebViewClient;

 import com.google.android.gms.ads.AdListener;
 import com.google.android.gms.ads.AdRequest;
 import com.google.android.gms.ads.AdView;
 import com.google.android.gms.ads.InterstitialAd;

 public class a2 extends AppCompatActivity {

  AdView mAdView;
  InterstitialAd mInterstitialAd;
  WebView WebViewWithCSS;

  @Override
  protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState); requestWindowFeature(Window.FEATURE_NO_TITLE); getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);
setContentView(R.layout.activity_a2);

WebViewWithCSS = (WebView)findViewById(R.id.webView);

WebSettings webSetting = WebViewWithCSS.getSettings();
webSetting.setJavaScriptEnabled(true);

WebViewWithCSS.setWebViewClient(new WebViewClient());
WebViewWithCSS.loadUrl("file:///android_asset/2.html");

mAdView = (AdView) findViewById(R.id.adView);
AdRequest adRequest = new AdRequest.Builder()
  .build();
mAdView.loadAd(adRequest);

mInterstitialAd = new InterstitialAd(this);

// set the ad unit ID
mInterstitialAd.setAdUnitId(getString(R.string.interstitial_full_screen));

adRequest = new AdRequest.Builder()
  .build();

// Load ads into Interstitial Ads
mInterstitialAd.loadAd(adRequest);

mInterstitialAd.setAdListener(new AdListener() {
 public void onAdLoaded() {
  showInterstitial();
 }
});
  }

  @Override
  public void onPause() {
if (mAdView != null) {
 mAdView.pause();
}
super.onPause();
  }

  @Override
  public void onResume() {
super.onResume();
if (mAdView != null) {
 mAdView.resume();
}
  }

  @Override
  public void onDestroy() {
if (mAdView != null) {
 mAdView.destroy();
}
super.onDestroy();
  }


  private void showInterstitial() {
if (mInterstitialAd.isLoaded()) {
 mInterstitialAd.show();
}
  }
 }

解决方案

Ads are disabled on my app after a couple of warnings, even I followed AdMob guidelines. I found the following key points in my research:

    Show Interstitial between pages

    Show Interstitial when a game level is completed

    Avoid accidental clicks

    Show on RIGHT TIME

The only issue I had was with right time. When is the right time for loading Interstitial? It all depends on you but in my case, an Interstitial was loading and showing after few seconds activity. This was happening because of slow internet connection. What basically happens is that activity shows and a user start interaction but Interstitial is not loaded yet. But the Interstitial loads and shows in the mid of interaction which causes an accidental click - which is against the policy.

Here are some corrective measures I took for my app:

    Limit showing an ad for a person

    Check if an ad is loaded and then display it while leaving an activity

For the first point, I used AdMob settings to limit the Frequency Cap to limit displaying an ad for a person. I show one ad in five minutes.

Frequency capping: Limits the number of times ads are shown to the same
person per minute, per hour, or per day.

And I also used counter in an activity to show an ad when a user visits an activity a couple of times.

For the second point, I show an ad when a user goes back to the previous screen.

In the onCreate() method:

counter = sharedPreferences.getInt(AD_COUNT, 0);
editor = sharedPreferences.edit();

if(2 == counter) {
 interstitialAd = new InterstitialAd(this);
 interstitialAd.setAdUnitId(getString(R.string.interstitial_unitID));
 interstitialAd.loadAd(adRequest);
} else {
 editor.putInt(AD_COUNT, sharedPreferences.getInt(AD_COUNT, 0) + 1).apply();
}

And onBackPressed() method:

@Override
public void onBackPressed() {
 if (2 == counter && interstitialAd.isLoaded()) {
  interstitialAd.show();

  //Reset the counter
  editor.putInt(AD_COUNT, sharedPreferences.getInt(AD_COUNT, 0)).apply();
 }
 super.onBackPressed();
}

好了关于布局鼓励意外点击 - 插页式广告:的教程就到这里就结束了,希望趣模板源码网找到的这篇技术文章能帮助到大家,更多技术教程可以在站内搜索。