added in version 22.1.0
belongs to Maven artifact com.android.support:support-media-compat:28.0.0-alpha1

MediaControllerCompat.Callback

public static abstract class MediaControllerCompat.Callback
extends Object implements IBinder.DeathRecipient

java.lang.Object
   ↳ android.support.v4.media.session.MediaControllerCompat.Callback


Callback for receiving updates on from the session. A Callback can be registered using registerCallback(MediaControllerCompat.Callback)

Summary

Public constructors

MediaControllerCompat.Callback()

Public methods

void binderDied()
void onAudioInfoChanged(MediaControllerCompat.PlaybackInfo info)

Override to handle changes to the audio info.

void onCaptioningEnabledChanged(boolean enabled)

Override to handle changes to the captioning enabled status.

void onExtrasChanged(Bundle extras)

Override to handle changes to the MediaSessionCompat extras.

void onMetadataChanged(MediaMetadataCompat metadata)

Override to handle changes to the current metadata.

void onPlaybackStateChanged(PlaybackStateCompat state)

Override to handle changes in playback state.

void onQueueChanged(List<MediaSessionCompat.QueueItem> queue)

Override to handle changes to items in the queue.

void onQueueTitleChanged(CharSequence title)

Override to handle changes to the queue title.

void onRepeatModeChanged(int repeatMode)

Override to handle changes to the repeat mode.

void onSessionDestroyed()

Override to handle the session being destroyed.

void onSessionEvent(String event, Bundle extras)

Override to handle custom events sent by the session owner without a specified interface.

void onSessionReady()

Override to handle the session being ready.

void onShuffleModeChanged(int shuffleMode)

Override to handle changes to the shuffle mode.

Inherited methods

From class java.lang.Object
From interface android.os.IBinder.DeathRecipient

Public constructors

MediaControllerCompat.Callback

added in version 22.1.0
MediaControllerCompat.Callback ()

Public methods

binderDied

added in version 22.1.0
void binderDied ()

onAudioInfoChanged

added in version 22.1.0
void onAudioInfoChanged (MediaControllerCompat.PlaybackInfo info)

Override to handle changes to the audio info.

Parameters
info MediaControllerCompat.PlaybackInfo: The current audio info for this session.

onCaptioningEnabledChanged

added in version 25.4.0
void onCaptioningEnabledChanged (boolean enabled)

Override to handle changes to the captioning enabled status.

Parameters
enabled boolean: true if captioning is enabled, false otherwise.

onExtrasChanged

added in version 22.1.0
void onExtrasChanged (Bundle extras)

Override to handle changes to the MediaSessionCompat extras.

Parameters
extras Bundle: The extras that can include other information associated with the MediaSessionCompat.

onMetadataChanged

added in version 22.1.0
void onMetadataChanged (MediaMetadataCompat metadata)

Override to handle changes to the current metadata.

Parameters
metadata MediaMetadataCompat: The current metadata for the session or null if none.

onPlaybackStateChanged

added in version 22.1.0
void onPlaybackStateChanged (PlaybackStateCompat state)

Override to handle changes in playback state.

Parameters
state PlaybackStateCompat: The new playback state of the session

onQueueChanged

added in version 22.1.0
void onQueueChanged (List<MediaSessionCompat.QueueItem> queue)

Override to handle changes to items in the queue.

Parameters
queue List: A list of items in the current play queue. It should include the currently playing item as well as previous and upcoming items if applicable.

onQueueTitleChanged

added in version 22.1.0
void onQueueTitleChanged (CharSequence title)

Override to handle changes to the queue title.

Parameters
title CharSequence: The title that should be displayed along with the play queue such as "Now Playing". May be null if there is no such title.

onRepeatModeChanged

added in version 25.4.0
void onRepeatModeChanged (int repeatMode)

Override to handle changes to the repeat mode.

Parameters
repeatMode int: The repeat mode. It should be one of followings: REPEAT_MODE_NONE, REPEAT_MODE_ONE, REPEAT_MODE_ALL, REPEAT_MODE_GROUP

onSessionDestroyed

added in version 22.1.0
void onSessionDestroyed ()

Override to handle the session being destroyed. The session is no longer valid after this call and calls to it will be ignored.

onSessionEvent

added in version 22.1.0
void onSessionEvent (String event,
                Bundle extras)

Override to handle custom events sent by the session owner without a specified interface. Controllers should only handle these for sessions they own.

Parameters
event String: The event from the session.

extras Bundle: Optional parameters for the event.

onSessionReady

added in version 27.1.0
void onSessionReady ()

Override to handle the session being ready.

See also:

onShuffleModeChanged

added in version 26.1.0
void onShuffleModeChanged (int shuffleMode)

Override to handle changes to the shuffle mode.

Parameters
shuffleMode int: The shuffle mode. Must be one of the followings: SHUFFLE_MODE_NONE, SHUFFLE_MODE_ALL, SHUFFLE_MODE_GROUP