I have put Interstitial ad on buttonclick. It will increase probability of clicking.But i want if user try to click cross button (to close ad) instead of clicking ad(in case he do not like ad), the ad clicked automatically and help adding points to my AdMob account.
If there is other strategy please suggest. Thanks
Here is the code:
// Load ads into Interstitial Ads
interstitial.loadAd(adRequest);
// Prepare an Interstitial Ad Listener
interstitial.setAdListener(new AdListener() {
public void onAdLoaded() {
// Call displayInterstitial() function
displayInterstitial();
}
});
}
public void displayInterstitial() {
// If Ads are loaded, show Interstitial else show nothing.
if (interstitial.isLoaded()) {
interstitial.show();
}
}