SessionCallback
abstract classSessionCallback
| kotlin.Any | |
| ↳ | android.media.MediaSession2.SessionCallback |
This API is not generally intended for third party application developers. Use the AndroidX Media3 session Library for consistent behavior across all devices.
Callback to be called for all incoming commands from MediaController2s.
Summary
| Public constructors | |
|---|---|
| Public methods | |
|---|---|
| open Unit |
onCommandResult(session: MediaSession2, controller: MediaSession2.ControllerInfo, token: Any, command: Session2Command, result: Session2Command.Result)Called when the command sent to the controller is finished. |
| open Session2CommandGroup? |
onConnect(session: MediaSession2, controller: MediaSession2.ControllerInfo)Called when a controller is created for this session. |
| open Unit |
onDisconnected(session: MediaSession2, controller: MediaSession2.ControllerInfo)Called when a controller is disconnected |
| open Unit |
onPostConnect(session: MediaSession2, controller: MediaSession2.ControllerInfo)Called immediately after a controller is connected. |
| open Session2Command.Result? |
onSessionCommand(session: MediaSession2, controller: MediaSession2.ControllerInfo, command: Session2Command, args: Bundle?)Called when a controller sent a session command. |
Public constructors
Public methods
onCommandResult
open funonCommandResult(
session: MediaSession2,
controller: MediaSession2.ControllerInfo,
token: Any,
command: Session2Command,
result: Session2Command.Result
): Unit
Deprecated: Deprecated in Java.
Called when the command sent to the controller is finished.
| Parameters | |
|---|---|
session |
MediaSession2: the session for this event. This value cannot be null. |
controller |
MediaSession2.ControllerInfo: controller information. This value cannot be null. |
token |
Any: the token got from MediaSession2.sendSessionCommand This value cannot be null. |
command |
Session2Command: the session command. This value cannot be null. |
result |
Session2Command.Result: the result of the session command. This value cannot be null. |
onConnect
open funonConnect(
session: MediaSession2,
controller: MediaSession2.ControllerInfo
): Session2CommandGroup?
Deprecated: Deprecated in Java.
Called when a controller is created for this session. Return allowed commands for controller. By default it returns null.
You can reject the connection by returning null. In that case, controller receives MediaController2.ControllerCallback.onDisconnected(MediaController2) and cannot be used.
The controller hasn't connected yet in this method, so calls to the controller (e.g. sendSessionCommand) would be ignored. Override onPostConnect for the custom initialization for the controller instead.
| Parameters | |
|---|---|
session |
MediaSession2: the session for this event. This value cannot be null. |
controller |
MediaSession2.ControllerInfo: controller information. This value cannot be null. |
| Return | |
|---|---|
Session2CommandGroup? |
allowed commands. Can be null to reject connection. |
onDisconnected
open funonDisconnected(
session: MediaSession2,
controller: MediaSession2.ControllerInfo
): Unit
Deprecated: Deprecated in Java.
Called when a controller is disconnected
| Parameters | |
|---|---|
session |
MediaSession2: the session for this event. This value cannot be null. |
controller |
MediaSession2.ControllerInfo: controller information. This value cannot be null. |
onPostConnect
open funonPostConnect(
session: MediaSession2,
controller: MediaSession2.ControllerInfo
): Unit
Deprecated: Deprecated in Java.
Called immediately after a controller is connected. This is a convenient method to add custom initialization between the session and a controller.
Note that calls to the controller (e.g. sendSessionCommand) work here but don't work in onConnect because the controller hasn't connected yet in onConnect.
| Parameters | |
|---|---|
session |
MediaSession2: the session for this event. This value cannot be null. |
controller |
MediaSession2.ControllerInfo: controller information. This value cannot be null. |
onSessionCommand
open funonSessionCommand(
session: MediaSession2,
controller: MediaSession2.ControllerInfo,
command: Session2Command,
args: Bundle?
): Session2Command.Result?
Deprecated: Deprecated in Java.
Called when a controller sent a session command.
| Parameters | |
|---|---|
session |
MediaSession2: the session for this event. This value cannot be null. |
controller |
MediaSession2.ControllerInfo: controller information. This value cannot be null. |
command |
Session2Command: the session command. This value cannot be null. |
args |
Bundle?: optional arguments. This value may be null. |
| Return | |
|---|---|
Session2Command.Result? |
the result for the session command. If null, RESULT_INFO_SKIPPED will be sent to the session. |