Interface InterstitialViewListener
-
public interface InterstitialViewListener
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonAdClicked(InterstitialView interstitialView)When an ad was clickedvoidonAdClickThroughClosed(InterstitialView interstitialView)When an expanded banner ad was closedvoidonAdClosed(InterstitialView interstitialView)voidonAdCompleted(InterstitialView interstitialView)When an ad has finished refreshing.voidonAdDisplayed(InterstitialView interstitialView)When a loaded ad is displayedvoidonAdFailed(InterstitialView interstitialView, AdException error)When AdModel fails to load for whatever reasonvoidonAdLoaded(InterstitialView interstitialView, AdDetails adDetails)This is triggered whenever the AD is rendered on the screen.
-
-
-
Method Detail
-
onAdLoaded
void onAdLoaded(InterstitialView interstitialView, AdDetails adDetails)
This is triggered whenever the AD is rendered on the screen.
-
onAdFailed
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
void onAdDisplayed(InterstitialView interstitialView)
When a loaded ad is displayed
-
onAdCompleted
void onAdCompleted(InterstitialView interstitialView)
When an ad has finished refreshing.
-
onAdClicked
void onAdClicked(InterstitialView interstitialView)
When an ad was clicked
-
onAdClickThroughClosed
void onAdClickThroughClosed(InterstitialView interstitialView)
When an expanded banner ad was closed
-
onAdClosed
void onAdClosed(InterstitialView interstitialView)
-
-