public static abstract class

VideoController.VideoLifecycleCallbacks

extends Object
java.lang.Object
   ↳ com.google.android.gms.ads.VideoController.VideoLifecycleCallbacks

Class Overview

An interface for objects that receive callbacks for video events.

Summary

Public Constructors
VideoController.VideoLifecycleCallbacks()
Public Methods
void onVideoEnd()
Called when video playback finishes playing.
void onVideoMute(boolean isMuted)
Called when the video changes mute state.
void onVideoPause()
Called when video playback is paused.
void onVideoPlay()
Called when video playback is playing.
void onVideoStart()
Called when video playback first begins.
[Expand]
Inherited Methods
From class java.lang.Object

Public Constructors

public VideoController.VideoLifecycleCallbacks ()

Public Methods

public void onVideoEnd ()

Called when video playback finishes playing.

public void onVideoMute (boolean isMuted)

Called when the video changes mute state.

Parameters
isMuted boolean

public void onVideoPause ()

Called when video playback is paused.

public void onVideoPlay ()

Called when video playback is playing.

public void onVideoStart ()

Called when video playback first begins.