belongs to Maven artifact com.android.support:support-media-compat:28.0.0-alpha1
MediaControllerCompat
public
final
class
MediaControllerCompat
extends Object
java.lang.Object | |
↳ | android.support.v4.media.session.MediaControllerCompat |
Allows an app to interact with an ongoing media session. Media buttons and other commands can be sent to the session. A callback may be registered to receive updates from the session, such as metadata and play state changes.
A MediaController can be created if you have a MediaSessionCompat.Token
from the session owner.
MediaController objects are thread-safe.
This is a helper for accessing features in MediaSession
introduced after API level 4 in a backwards compatible fashion.
If MediaControllerCompat is created with a session token
from another process, following methods will not work directly after the creation if the
session token
is not passed through a
MediaBrowserCompat
:
Developer Guides
For information about building your media application, read the Media Apps developer guide.
Summary
Nested classes | |
---|---|
class |
MediaControllerCompat.Callback
Callback for receiving updates on from the session. |
class |
MediaControllerCompat.PlaybackInfo
Holds information about the way volume is handled for this session. |
class |
MediaControllerCompat.TransportControls
Interface for controlling media playback on a session. |
Public constructors | |
---|---|
MediaControllerCompat(Context context, MediaSessionCompat session)
Creates a media controller from a session. |
|
MediaControllerCompat(Context context, MediaSessionCompat.Token sessionToken)
Creates a media controller from a session token which may have been obtained from another process. |
Public methods | |
---|---|
void
|
addQueueItem(MediaDescriptionCompat description)
Adds a queue item from the given |
void
|
addQueueItem(MediaDescriptionCompat description, int index)
Adds a queue item from the given |
void
|
adjustVolume(int direction, int flags)
Adjusts the volume of the output this session is playing on. |
boolean
|
dispatchMediaButtonEvent(KeyEvent keyEvent)
Sends the specified media button event to the session. |
Bundle
|
getExtras()
Gets the extras for this session. |
long
|
getFlags()
Gets the flags for this session. |
Object
|
getMediaController()
Gets the underlying framework
|
static
MediaControllerCompat
|
getMediaController(Activity activity)
Retrieves the |
MediaMetadataCompat
|
getMetadata()
Gets the current metadata for this session. |
String
|
getPackageName()
Gets the session owner's package name. |
MediaControllerCompat.PlaybackInfo
|
getPlaybackInfo()
Gets the current playback info for this session. |
PlaybackStateCompat
|
getPlaybackState()
Gets the current playback state for this session. |
List<MediaSessionCompat.QueueItem>
|
getQueue()
Gets the current play queue for this session if one is set. |
CharSequence
|
getQueueTitle()
Gets the queue title for this session. |
int
|
getRatingType()
Gets the rating type supported by the session. |
int
|
getRepeatMode()
Gets the repeat mode for this session. |
PendingIntent
|
getSessionActivity()
Gets an intent for launching UI associated with this session if one exists. |
MediaSessionCompat.Token
|
getSessionToken()
Gets the token for the session this controller is connected to. |
int
|
getShuffleMode()
Gets the shuffle mode for this session. |
MediaControllerCompat.TransportControls
|
getTransportControls()
Gets a |
boolean
|
isCaptioningEnabled()
Returns whether captioning is enabled for this session. |
boolean
|
isSessionReady()
Returns whether the session is ready or not. |
void
|
registerCallback(MediaControllerCompat.Callback callback, Handler handler)
Adds a callback to receive updates from the session. |
void
|
registerCallback(MediaControllerCompat.Callback callback)
Adds a callback to receive updates from the Session. |
void
|
removeQueueItem(MediaDescriptionCompat description)
Removes the first occurrence of the specified |
void
|
removeQueueItemAt(int index)
This method was deprecated
in API level 26.1.0.
Use |
void
|
sendCommand(String command, Bundle params, ResultReceiver cb)
Sends a generic command to the session. |
static
void
|
setMediaController(Activity activity, MediaControllerCompat mediaController)
Sets a |
void
|
setVolumeTo(int value, int flags)
Sets the volume of the output this session is playing on. |
void
|
unregisterCallback(MediaControllerCompat.Callback callback)
Stops receiving updates on the specified callback. |
Inherited methods | |
---|---|
From
class
java.lang.Object
|
Public constructors
MediaControllerCompat
MediaControllerCompat (Context context, MediaSessionCompat session)
Creates a media controller from a session.
Parameters | |
---|---|
context |
Context |
session |
MediaSessionCompat : The session to be controlled.
|
MediaControllerCompat
MediaControllerCompat (Context context, MediaSessionCompat.Token sessionToken)
Creates a media controller from a session token which may have been obtained from another process.
Parameters | |
---|---|
context |
Context |
sessionToken |
MediaSessionCompat.Token : The token of the session to be controlled. |
Throws | |
---|---|
RemoteException |
if the session is not accessible. |
Public methods
addQueueItem
void addQueueItem (MediaDescriptionCompat description)
Adds a queue item from the given description
at the end of the play queue
of this session. Not all sessions may support this. To know whether the session supports
this, get the session's flags with getFlags()
and check that the flag
FLAG_HANDLES_QUEUE_COMMANDS
is set.
Parameters | |
---|---|
description |
MediaDescriptionCompat : The MediaDescriptionCompat for creating the
MediaSessionCompat.QueueItem to be inserted. |
Throws | |
---|---|
UnsupportedOperationException |
If this session doesn't support this. |
See also:
addQueueItem
void addQueueItem (MediaDescriptionCompat description, int index)
Adds a queue item from the given description
at the specified position
in the play queue of this session. Shifts the queue item currently at that position
(if any) and any subsequent queue items to the right (adds one to their indices).
Not all sessions may support this. To know whether the session supports this,
get the session's flags with getFlags()
and check that the flag
FLAG_HANDLES_QUEUE_COMMANDS
is set.
Parameters | |
---|---|
description |
MediaDescriptionCompat : The MediaDescriptionCompat for creating the
MediaSessionCompat.QueueItem to be inserted. |
index |
int : The index at which the created MediaSessionCompat.QueueItem
is to be inserted. |
Throws | |
---|---|
UnsupportedOperationException |
If this session doesn't support this. |
See also:
adjustVolume
void adjustVolume (int direction, int flags)
Adjusts the volume of the output this session is playing on. The direction
must be one of ADJUST_LOWER
,
ADJUST_RAISE
, or ADJUST_SAME
.
The command will be ignored if the session does not support
VOLUME_CONTROL_RELATIVE
or
VOLUME_CONTROL_ABSOLUTE
. The flags in
AudioManager
may be used to affect the handling.
Parameters | |
---|---|
direction |
int : The direction to adjust the volume in. |
flags |
int : Any flags to pass with the command.
|
See also:
dispatchMediaButtonEvent
boolean dispatchMediaButtonEvent (KeyEvent keyEvent)
Sends the specified media button event to the session. Only media keys can be sent by this method, other keys will be ignored.
Parameters | |
---|---|
keyEvent |
KeyEvent : The media button event to dispatch. |
Returns | |
---|---|
boolean |
true if the event was sent to the session, false otherwise. |
getExtras
Bundle getExtras ()
Gets the extras for this session.
Returns | |
---|---|
Bundle |
getFlags
long getFlags ()
Gets the flags for this session. Flags are defined in
MediaSessionCompat
.
Returns | |
---|---|
long |
The current set of flags for the session. |
getMediaController
Object getMediaController ()
Gets the underlying framework
MediaController
object.
This method is only supported on API 21+.
Returns | |
---|---|
Object |
The underlying MediaController
object, or null if none.
|
getMediaController
MediaControllerCompat getMediaController (Activity activity)
Retrieves the MediaControllerCompat
set in the activity by
setMediaController(Activity, MediaControllerCompat)
for sending media key and volume
events.
This is compatible with getMediaController()
.
Parameters | |
---|---|
activity |
Activity : The activity to get the media controller from, must not be null. |
Returns | |
---|---|
MediaControllerCompat |
The controller which should receive events. |
getMetadata
MediaMetadataCompat getMetadata ()
Gets the current metadata for this session.
Returns | |
---|---|
MediaMetadataCompat |
The current MediaMetadata or null. |
getPackageName
String getPackageName ()
Gets the session owner's package name.
Returns | |
---|---|
String |
The package name of of the session owner. |
getPlaybackInfo
MediaControllerCompat.PlaybackInfo getPlaybackInfo ()
Gets the current playback info for this session.
Returns | |
---|---|
MediaControllerCompat.PlaybackInfo |
The current playback info or null. |
getPlaybackState
PlaybackStateCompat getPlaybackState ()
Gets the current playback state for this session.
If the session is not ready, getExtras()
on the result of
this method may return null.
Returns | |
---|---|
PlaybackStateCompat |
The current PlaybackState or null |
See also:
getQueue
List<MediaSessionCompat.QueueItem> getQueue ()
Gets the current play queue for this session if one is set. If you only
care about the current item getMetadata()
should be used.
Returns | |
---|---|
List<MediaSessionCompat.QueueItem> |
The current play queue or null. |
getQueueTitle
CharSequence getQueueTitle ()
Gets the queue title for this session.
Returns | |
---|---|
CharSequence |
getRatingType
int getRatingType ()
Gets the rating type supported by the session. One of:
RATING_NONE
RATING_HEART
RATING_THUMB_UP_DOWN
RATING_3_STARS
RATING_4_STARS
RATING_5_STARS
RATING_PERCENTAGE
If the session is not ready, it will return RATING_NONE
.
Returns | |
---|---|
int |
The supported rating type, or RATING_NONE if the value is not
set or the session is not ready. |
See also:
getRepeatMode
int getRepeatMode ()
Gets the repeat mode for this session.
Returns | |
---|---|
int |
The latest repeat mode set to the session,
REPEAT_MODE_NONE if not set, or
REPEAT_MODE_INVALID if the session is not ready yet. |
See also:
getSessionActivity
PendingIntent getSessionActivity ()
Gets an intent for launching UI associated with this session if one exists.
Returns | |
---|---|
PendingIntent |
A PendingIntent to launch UI or null.
|
getSessionToken
MediaSessionCompat.Token getSessionToken ()
Gets the token for the session this controller is connected to.
Returns | |
---|---|
MediaSessionCompat.Token |
The session's token. |
getShuffleMode
int getShuffleMode ()
Gets the shuffle mode for this session.
Returns | |
---|---|
int |
The latest shuffle mode set to the session, or
SHUFFLE_MODE_NONE if disabled or not set, or
SHUFFLE_MODE_INVALID if the session is not ready yet. |
See also:
getTransportControls
MediaControllerCompat.TransportControls getTransportControls ()
Gets a MediaControllerCompat.TransportControls
instance for this session.
Returns | |
---|---|
MediaControllerCompat.TransportControls |
A controls instance |
isCaptioningEnabled
boolean isCaptioningEnabled ()
Returns whether captioning is enabled for this session.
If the session is not ready, it will return a false
.
Returns | |
---|---|
boolean |
true if captioning is enabled, false if disabled or not set. |
See also:
isSessionReady
boolean isSessionReady ()
Returns whether the session is ready or not.
If the session is not ready, following methods can work incorrectly.
Returns | |
---|---|
boolean |
true if the session is ready, false otherwise. |
See also:
registerCallback
void registerCallback (MediaControllerCompat.Callback callback, Handler handler)
Adds a callback to receive updates from the session. Updates will be posted on the specified handler's thread.
Parameters | |
---|---|
callback |
MediaControllerCompat.Callback : The callback object, must not be null. |
handler |
Handler : The handler to post updates on. If null the callers thread
will be used.
|
registerCallback
void registerCallback (MediaControllerCompat.Callback callback)
Adds a callback to receive updates from the Session. Updates will be posted on the caller's thread.
Parameters | |
---|---|
callback |
MediaControllerCompat.Callback : The callback object, must not be null.
|
removeQueueItem
void removeQueueItem (MediaDescriptionCompat description)
Removes the first occurrence of the specified MediaSessionCompat.QueueItem
with the given description
in the play queue of the
associated session. Not all sessions may support this. To know whether the session supports
this, get the session's flags with getFlags()
and check that the flag
FLAG_HANDLES_QUEUE_COMMANDS
is set.
Parameters | |
---|---|
description |
MediaDescriptionCompat : The MediaDescriptionCompat for denoting the
MediaSessionCompat.QueueItem to be removed. |
Throws | |
---|---|
UnsupportedOperationException |
If this session doesn't support this. |
See also:
removeQueueItemAt
void removeQueueItemAt (int index)
This method was deprecated
in API level 26.1.0.
Use removeQueueItem(MediaDescriptionCompat)
instead.
Removes an queue item at the specified position in the play queue
of this session. Not all sessions may support this. To know whether the session supports
this, get the session's flags with getFlags()
and check that the flag
FLAG_HANDLES_QUEUE_COMMANDS
is set.
Parameters | |
---|---|
index |
int : The index of the element to be removed. |
Throws | |
---|---|
UnsupportedOperationException |
If this session doesn't support this. |
See also:
sendCommand
void sendCommand (String command, Bundle params, ResultReceiver cb)
Sends a generic command to the session. It is up to the session creator to decide what commands and parameters they will support. As such, commands should only be sent to sessions that the controller owns.
Parameters | |
---|---|
command |
String : The command to send |
params |
Bundle : Any parameters to include with the command |
cb |
ResultReceiver : The callback to receive the result on
|
setMediaController
void setMediaController (Activity activity, MediaControllerCompat mediaController)
Sets a MediaControllerCompat
in the activity
for later retrieval via
getMediaController(Activity)
.
This is compatible with setMediaController(MediaController)
.
If activity
inherits FragmentActivity
, the
mediaController
will be saved in the activity
. In addition to that,
on API 21 and later, setMediaController(MediaController)
will be
called.
Parameters | |
---|---|
activity |
Activity : The activity to set the mediaController in, must not be null. |
mediaController |
MediaControllerCompat : The controller for the session which should receive
media keys and volume changes on API 21 and later. |
setVolumeTo
void setVolumeTo (int value, int flags)
Sets the volume of the output this session is playing on. The command will
be ignored if it does not support
VOLUME_CONTROL_ABSOLUTE
. The flags in
AudioManager
may be used to affect the handling.
Parameters | |
---|---|
value |
int : The value to set it to, between 0 and the reported max. |
flags |
int : Flags from AudioManager to include with the volume
request.
|
See also:
unregisterCallback
void unregisterCallback (MediaControllerCompat.Callback callback)
Stops receiving updates on the specified callback. If an update has already been posted you may still receive it after calling this method.
Parameters | |
---|---|
callback |
MediaControllerCompat.Callback : The callback to remove
|
Interfaces
Classes
- MediaButtonReceiver
- MediaControllerCompat
- MediaControllerCompat.Callback
- MediaControllerCompat.PlaybackInfo
- MediaControllerCompat.TransportControls
- MediaSessionCompat
- MediaSessionCompat.Callback
- MediaSessionCompat.QueueItem
- MediaSessionCompat.Token
- ParcelableVolumeInfo
- PlaybackStateCompat
- PlaybackStateCompat.Builder
- PlaybackStateCompat.CustomAction
- PlaybackStateCompat.CustomAction.Builder
Content and code samples on this page are subject to the licenses described in the Content License. Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
Last updated 2024-04-11 UTC.