Interface InterstitialAdEventListener
-
@MainThread public interface InterstitialAdEventListenerA listener for receiving notifications during the lifecycle of an interstitial ad.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonAdClicked()Called when user clicked on the ad.voidonAdDismissed()Called when an interstitial ad has been dismissed.voidonAdFailedToShow(AdError adError)Called when an interstitial ad failed to show.voidonAdImpression(ImpressionData impressionData)Called when an impression was observedvoidonAdShown()Called when an interstitial ad has been shown.
-
-
-
Method Detail
-
onAdShown
void onAdShown()
Called when an interstitial ad has been shown.
-
onAdFailedToShow
void onAdFailedToShow(@NonNull AdError adError)Called when an interstitial ad failed to show.
-
onAdDismissed
void onAdDismissed()
Called when an interstitial ad has been dismissed.
-
onAdClicked
void onAdClicked()
Called when user clicked on the ad.
-
onAdImpression
void onAdImpression(@Nullable ImpressionData impressionData)Called when an impression was observed- Parameters:
impressionData- - impression level revenue data
-
-