java.lang.Object | |
↳ | android.media.session.MediaSessionManager |
Provides support for interacting with media sessions
that applications have published to express their ongoing media playback
state.
Use Context.getSystemService(Context.MEDIA_SESSION_SERVICE)
to
get an instance of this class.
Nested Classes | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
MediaSessionManager.OnActiveSessionsChangedListener | Listens for changes to the list of active sessions. |
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Add a listener to be notified when the list of active sessions
changes.This requires the
android.Manifest.permission.MEDIA_CONTENT_CONTROL permission be held by
the calling app.
| |||||||||||
Add a listener to be notified when the list of active sessions
changes.This requires the
android.Manifest.permission.MEDIA_CONTENT_CONTROL permission be held by
the calling app.
| |||||||||||
Get a list of controllers for all ongoing sessions.
| |||||||||||
Stop receiving active sessions updates on the specified listener.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Object
|
Add a listener to be notified when the list of active sessions
changes.This requires the
android.Manifest.permission.MEDIA_CONTENT_CONTROL permission be held by
the calling app. You may also retrieve this list if your app is an
enabled notification listener using the
NotificationListenerService
APIs, in which case you must pass the
ComponentName
of your enabled listener. Updates will be posted to
the thread that registered the listener.
sessionListener | The listener to add. |
---|---|
notificationListener | The enabled notification listener component. May be null. |
Add a listener to be notified when the list of active sessions
changes.This requires the
android.Manifest.permission.MEDIA_CONTENT_CONTROL permission be held by
the calling app. You may also retrieve this list if your app is an
enabled notification listener using the
NotificationListenerService
APIs, in which case you must pass the
ComponentName
of your enabled listener. Updates will be posted to
the handler specified or to the caller's thread if the handler is null.
sessionListener | The listener to add. |
---|---|
notificationListener | The enabled notification listener component. May be null. |
handler | The handler to post events to. |
Get a list of controllers for all ongoing sessions. The controllers will be provided in priority order with the most important controller at index 0.
This requires the android.Manifest.permission.MEDIA_CONTENT_CONTROL
permission be held by the calling app. You may also retrieve this list if
your app is an enabled notification listener using the
NotificationListenerService
APIs, in which case you must pass the
ComponentName
of your enabled listener.
notificationListener | The enabled notification listener component. May be null. |
---|
Stop receiving active sessions updates on the specified listener.
listener | The listener to remove. |
---|