我正在使用此代码来展示广告。当用户在特定的点击时间后单击我的应用程序的内容时,如何显示广告?这是代码:

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

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

    interstitial = new InterstitialAd(MainActivity.this);

    interstitial.setAdUnitId(getString(R.string.admob_interstitial_id));

    interstitial.loadAd(adRequest);
    interstitial.setAdListener(new AdListener() {
        public void onAdLoaded() {

            displayInterstitial();
        }
    });

}
public void displayInterstitial() {

    if (interstitial.isLoaded()) {
        interstitial.show();
    }
}


}

最佳答案

在启动屏幕中创建sharedpreference并存储一个值为0的int,并在每次单击时获取该int的值并检查它是否与“ X”点击匹配,并加载并显示状态间广告,或者该值与增量不匹配。

07-28 00:15