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