Package com.inmobi.ads.listeners
Class VideoEventListener
- java.lang.Object
-
- com.inmobi.ads.listeners.VideoEventListener
-
public abstract class VideoEventListener extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description VideoEventListener()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
onAudioStateChanged(InMobiNative inMobiNative, boolean isMuted)
Called to notify when media audio state changes.void
onVideoCompleted(InMobiNative ad)
Called to notify that the video has finished playing.void
onVideoSkipped(InMobiNative ad)
Called to notify that the user has skipped video play.
-
-
-
Method Detail
-
onVideoCompleted
public void onVideoCompleted(InMobiNative ad)
Called to notify that the video has finished playing.- Parameters:
ad
- Represents theInMobiNative
ad
-
onVideoSkipped
public void onVideoSkipped(InMobiNative ad)
Called to notify that the user has skipped video play.- Parameters:
ad
- Represents theInMobiNative
ad
-
onAudioStateChanged
public void onAudioStateChanged(InMobiNative inMobiNative, boolean isMuted)
Called to notify when media audio state changes.- Parameters:
isMuted
- Represents whether media is muted or not.
-
-