CEAdListener
Public interface CEAdListener
This interface is used for getting the information of 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
onVideoEnd(Ad ad) On video play end.
void
onVideoProgress(Ad ad, int totoalDuration, 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.
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