Interface BannerVideoListener
public interface BannerVideoListener
Listener interface representing banner video events.
All methods will be invoked on the main thread.
-
Method Summary
Modifier and TypeMethodDescriptionvoidonVideoCompleted(BannerView bannerView) Executed when the video complete its playbackvoidonVideoMuted(BannerView bannerView) Executed when the video playback is mutedvoidonVideoPaused(BannerView bannerView) Executed when the video playback is not visiblevoidonVideoResumed(BannerView bannerView) Executed when the video is paused and visibility constraints are satisfied againvoidonVideoUnMuted(BannerView bannerView) Executed when the video playback is unmuted
-
Method Details
-
onVideoCompleted
Executed when the video complete its playback- Parameters:
bannerView- view of the corresponding event.
-
onVideoPaused
Executed when the video playback is not visible- Parameters:
bannerView- view of the corresponding event.
-
onVideoResumed
Executed when the video is paused and visibility constraints are satisfied again- Parameters:
bannerView- view of the corresponding event.
-
onVideoUnMuted
Executed when the video playback is unmuted- Parameters:
bannerView- view of the corresponding event.
-
onVideoMuted
Executed when the video playback is muted- Parameters:
bannerView- view of the corresponding event.
-