CEInterstitialAdListener
package com.intowow.sdk.InterstitialAd
public static interface CEInterstitialAdListener
This interface is used for InterstitialAd
to get the result of requesting and ad status
Public methods
void
onAdClicked(Ad ad) On ad clicked.
void
onAdImpression(Ad ad) On ad impression.
void
onAdMute(Ad ad) On ad mute.
void
onAdUnmute(Ad ad) On ad unmute.
void
onAdDismissed(Ad ad) On interstitial ad dismissed.
void
onAdDisplayed(Ad ad) On interstitial ad displayed.
void
onVideoEnd(Ad ad) On video play end.
void
onVideoProgress(Ad ad, int totalDuration, int currentPosition) On video play in progress.
void
onVideoStart(Ad ad) On video start to play
Public methods
onAdClicked
void onAdClicked(Ad ad)
On ad clicked.
Parameters
ad
Ad: The Ad you loaded.
onAdImpression
void onAdImpression(Ad ad)
On ad impression.
Parameters
ad
Ad: The Ad you loaded.
onAdMute
void onAdMute(Ad ad)
On ad mute.
Parameters
ad
Ad: The Ad you loaded.
onAdUnmute
void onAdUnmute(Ad ad)
On ad unmute.
Parameters
ad
Ad: The Ad you loaded.
onAdDismissed
void onAdDismissed(Ad ad)
On interstitial ad dismissed.
Parameters
ad
Ad: The Ad you loaded.
onAdDisplayed
void onAdDisplayed(Ad ad)
On interstitial ad displayed.
Parameters
ad
Ad: The Ad you loaded.
onVideoEnd
void onVideoEnd(Ad ad)
On video play end.
Parameters
ad
Ad: The Ad you loaded.
onVideoProgress
void onVideoProgress(Ad ad, int totoalDuration, int currentPosition)
On video play in progress.
Parameters
ad
Ad: The Ad you loaded.
totoalDuration
int: The video duration.
currentPosition
int: The video current play position.
onVideoStart
void onVideoStart(Ad ad)
On video start to play.
Parameters
ad
Ad: The Ad you loaded.
Last updated