-
public interface InterstitialViewListener
-
-
Method Summary
Modifier and Type Method Description abstract voidonAdLoaded(InterstitialView interstitialView, AdDetails adDetails)This is triggered whenever the AD is rendered on the screen. abstract voidonAdFailed(InterstitialView interstitialView, AdException error)When AdModel fails to load for whatever reason abstract voidonAdDisplayed(InterstitialView interstitialView)When a loaded ad is displayed abstract voidonAdCompleted(InterstitialView interstitialView)When an ad has finished refreshing. abstract voidonAdClicked(InterstitialView interstitialView)When an ad was clicked abstract voidonAdClickThroughClosed(InterstitialView interstitialView)When an expanded banner ad was closed abstract voidonAdClosed(InterstitialView interstitialView)-
-
Method Detail
-
onAdLoaded
abstract void onAdLoaded(InterstitialView interstitialView, AdDetails adDetails)
This is triggered whenever the AD is rendered on the screen.
-
onAdFailed
abstract void onAdFailed(InterstitialView interstitialView, AdException error)
When AdModel fails to load for whatever reason
- Parameters:
error- The AdException received when trying to load the Ad
-
onAdDisplayed
abstract void onAdDisplayed(InterstitialView interstitialView)
When a loaded ad is displayed
-
onAdCompleted
abstract void onAdCompleted(InterstitialView interstitialView)
When an ad has finished refreshing.
-
onAdClicked
abstract void onAdClicked(InterstitialView interstitialView)
When an ad was clicked
-
onAdClickThroughClosed
abstract void onAdClickThroughClosed(InterstitialView interstitialView)
When an expanded banner ad was closed
-
onAdClosed
abstract void onAdClosed(InterstitialView interstitialView)
-
-
-
-