PlaybackGlueHost.PlayerCallback
public
static
class
PlaybackGlueHost.PlayerCallback
extends Object
java.lang.Object | |
↳ | androidx.leanback.media.PlaybackGlueHost.PlayerCallback |
Optional Client that implemented by PlaybackGlueHost to respond to player event.
Summary
Public constructors | |
---|---|
PlaybackGlueHost.PlayerCallback()
|
Public methods | |
---|---|
void
|
onBufferingStateChanged(boolean start)
notify media starts/stops buffering/preparing. |
void
|
onError(int errorCode, CharSequence errorMessage)
notify media has error. |
void
|
onVideoSizeChanged(int videoWidth, int videoHeight)
Size of the video changes, the Host should adjust SurfaceView's layout width and height. |
Inherited methods | |
---|---|
Public constructors
PlaybackGlueHost.PlayerCallback
public PlaybackGlueHost.PlayerCallback ()
Public methods
onBufferingStateChanged
public void onBufferingStateChanged (boolean start)
notify media starts/stops buffering/preparing. The Host could start or stop progress bar.
Parameters | |
---|---|
start |
boolean : True for buffering start, false otherwise.
|
onError
public void onError (int errorCode, CharSequence errorMessage)
notify media has error. The Host could show error dialog.
Parameters | |
---|---|
errorCode |
int : Optional error code for specific implementation. |
errorMessage |
CharSequence : Optional error message for specific implementation.
|
onVideoSizeChanged
public void onVideoSizeChanged (int videoWidth, int videoHeight)
Size of the video changes, the Host should adjust SurfaceView's layout width and height.