Dismiss interstitials on user click

By default, when a user clicks an interstitial ad and is taken to the landing page in the device's native browser, when they return to the app the interstitial ad is still displayed. This article has instructions for dismissing the interstitial ad when the user clicks.

To change this behavior so that the interstitial ad view is dismissed when the user clicks on the ad, the following methods are available on the InterstitialAdView:

Methods

Method Description
shouldDismissOnClick() Whether the interstitial ad view will be dismissed when the user clicks the ad. Defaults to false.
setDismissOnClick(boolean) Pass true to dismiss the interstitial ad view when the user clicks the ad.

Example

InterstitialAdView iav = new InterstitialAdView(this);
iav.setPlacementID("1326299");
iav.setDismissOnClick(true);