added in version 26.1.0
belongs to Maven artifact com.android.support:leanback-v17:28.0.0-alpha1

PlayerAdapter

public abstract class PlayerAdapter
extends Object

java.lang.Object
   ↳ android.support.v17.leanback.media.PlayerAdapter
Known Direct Subclasses


Base class that wraps underlying media player. The class is used by PlaybackGlue, for example PlaybackTransportControlGlue is bound to a PlayerAdapter. This class is intended to be subclassed, MediaPlayerAdapter is a concrete subclass using MediaPlayer.

Summary

Nested classes

class PlayerAdapter.Callback

Client for client of PlayerAdapter. 

Public constructors

PlayerAdapter()

Public methods

void fastForward()

Optional method.

long getBufferedPosition()

Returns the current buffered position of the media item in milliseconds.

final PlayerAdapter.Callback getCallback()

Gets callback for event of PlayerAdapter.

long getCurrentPosition()

Returns the current position of the media item in milliseconds.

long getDuration()

Returns the duration of the media item in milliseconds.

long getSupportedActions()

Return xor combination of values defined in PlaybackBaseControlGlue.

boolean isPlaying()

Returns true if media is currently playing.

boolean isPrepared()
void next()

Optional method.

void onAttachedToHost(PlaybackGlueHost host)

This method is called attached to associated PlaybackGlueHost.

void onDetachedFromHost()

This method is called when current associated PlaybackGlueHost is attached to a different PlaybackGlue or PlaybackGlueHost is destroyed.

abstract void pause()

Pauses the media player.

abstract void play()

Starts the media play