Example usage for Java android.media RemoteControlClient fields, constructors, methods, implement or subclass
The text is from its open source code.
int | PLAYSTATE_STOPPED Playback state of a RemoteControlClient which is stopped. |
int | PLAYSTATE_PAUSED Playback state of a RemoteControlClient which is paused. |
int | PLAYSTATE_PLAYING Playback state of a RemoteControlClient which is playing media. |
int | PLAYSTATE_FAST_FORWARDING Playback state of a RemoteControlClient which is fast forwarding in the media it is currently playing. |
int | PLAYSTATE_REWINDING Playback state of a RemoteControlClient which is fast rewinding in the media it is currently playing. |
int | PLAYSTATE_SKIPPING_FORWARDS Playback state of a RemoteControlClient which is skipping to the next logical chapter (such as a song in a playlist) in the media it is currently playing. |
int | PLAYSTATE_SKIPPING_BACKWARDS Playback state of a RemoteControlClient which is skipping back to the previous logical chapter (such as a song in a playlist) in the media it is currently playing. |
int | PLAYSTATE_BUFFERING Playback state of a RemoteControlClient which is buffering data to play before it can start or resume playback. |
int | PLAYSTATE_ERROR Playback state of a RemoteControlClient which cannot perform any playback related operation because of an internal error. |
int | FLAG_KEY_MEDIA_PREVIOUS Flag indicating a RemoteControlClient makes use of the "previous" media key. |
int | FLAG_KEY_MEDIA_REWIND Flag indicating a RemoteControlClient makes use of the "rewind" media key. |
int | FLAG_KEY_MEDIA_PLAY Flag indicating a RemoteControlClient makes use of the "play" media key. |
int | FLAG_KEY_MEDIA_PLAY_PAUSE Flag indicating a RemoteControlClient makes use of the "play/pause" media key. |
int | FLAG_KEY_MEDIA_PAUSE Flag indicating a RemoteControlClient makes use of the "pause" media key. |
int | FLAG_KEY_MEDIA_STOP Flag indicating a RemoteControlClient makes use of the "stop" media key. |
int | FLAG_KEY_MEDIA_FAST_FORWARD Flag indicating a RemoteControlClient makes use of the "fast forward" media key. |
int | FLAG_KEY_MEDIA_NEXT Flag indicating a RemoteControlClient makes use of the "next" media key. |
int | FLAG_KEY_MEDIA_POSITION_UPDATE Flag indicating a RemoteControlClient can receive changes in the media playback position through the OnPlaybackPositionUpdateListener interface. |
int | FLAG_KEY_MEDIA_RATING Flag indicating a RemoteControlClient supports ratings. |
RemoteControlClient(PendingIntent mediaButtonIntent) Class constructor. |
MetadataEditor | editMetadata(boolean startEmpty) Creates a MetadataEditor . |
void | setPlaybackState(int state) Sets the current playback state. |
void | setTransportControlFlags(int transportControlFlags) Sets the flags for the media transport control buttons that this client supports. |