MediaRouter2

public final class MediaRouter2
extends Object

java.lang.Object
   ↳ android.media.MediaRouter2


This API is not generally intended for third party application developers. Use the AndroidX Media Router Library for consistent behavior across all devices.

MediaRouter2 allows applications to control the routing of media channels and streams from the current device to remote speakers and devices.

Summary

Nested classes

class MediaRouter2.ControllerCallback

Callback for receiving RoutingController updates. 

interface MediaRouter2.OnGetControllerHintsListener

A listener interface to send optional app-specific hints when creating a RoutingController

class MediaRouter2.RouteCallback

Callback for receiving events about media route discovery. 

class MediaRouter2.RoutingController

A class to control media routing session in media route provider. 

class MediaRouter2.TransferCallback

Callback for receiving events on media transfer. 

Public methods

MediaRouter2.RoutingController getController(String id)

Gets a RoutingController whose ID is equal to the given ID.

List<MediaRouter2.RoutingController> getControllers()

Gets the list of currently active routing controllers on which media can be played.

static MediaRouter2 getInstance(Context context)

Gets an instance of the media router associated with the context.

RouteListingPreference getRouteListingPreference()

Returns the current RouteListingPreference of the target router.

List<MediaRoute2Info> getRoutes()

Gets the unmodifiable list of routes currently known to the media router.

MediaRouter2.RoutingController getSystemController()

Gets a RoutingController which can control the routes provided by system.

void registerControllerCallback(Executor executor, MediaRouter2.ControllerCallback callback)

Registers a ControllerCallback.

void registerRouteCallback(Executor executor, MediaRouter2.RouteCallback routeCallback, RouteDiscoveryPreference preference)

Registers a callback to discover routes and to receive events when they change.

void registerRouteListingPreferenceUpdatedCallback(Executor executor, Consumer<RouteListingPreference> routeListingPreferenceCallback)

Registers the given callback to be invoked when the RouteListingPreference of the target router changes.

void registerTransferCallback(Executor executor, MediaRouter2.TransferCallback callback)

Registers a callback to get the result of transferTo(android.media.MediaRoute2Info).

void setOnGetControllerHintsListener(MediaRouter2.OnGetControllerHintsListener listener)

Sets an OnGetControllerHintsListener to send hints when creating a RoutingController.

void setRouteListingPreference(RouteListingPreference routeListingPreference)

Sets the RouteListingPreference of the app associated to this media router.

boolean showSystemOutputSwitcher()

Shows the system output switcher dialog.

void stop()

Stops the current media routing.

void transferTo(MediaRoute2Info route)

Transfers the current media to the given route.

void unregisterControllerCallback(MediaRouter2.ControllerCallback callback)

Unregisters a ControllerCallback.

void unregisterRouteCallback(MediaRouter2.RouteCallback routeCallback)

Unregisters the given callback.

void unregisterRouteListingPreferenceUpdatedCallback(Consumer<RouteListingPreference> callback)

Unregisters the given callback to not receive RouteListingPreference change events.

void unregisterTransferCallback(MediaRouter2.TransferCallback callback)

Unregisters the given callback.

Inherited methods

Public methods

getController

Added in API level 31
public MediaRouter2.RoutingController getController (String id)

Gets a RoutingController whose ID is equal to the given ID. Returns null if there is no matching controller.

Parameters
id String: This value cannot be null.

Returns
MediaRouter2.RoutingController

getControllers

Added in API level 30
public List<MediaRouter2.RoutingController> getControllers ()

Gets the list of currently active routing controllers on which media can be played.

Note: The list returned here will never be empty. The first element in the list is always the system controller.

Returns
List<MediaRouter2.RoutingController> This value cannot be null.

getInstance

Added in API level 30
public static MediaRouter2 getInstance (Context context)

Gets an instance of the media router associated with the context.

Parameters
context Context: This value cannot be null.

Returns
MediaRouter2 This value cannot be null.

getRouteListingPreference

public RouteListingPreference getRouteListingPreference ()

Returns the current RouteListingPreference of the target router.

If this instance was created using #getInstance(Context, String), then it returns the last RouteListingPreference set by the process this router was created for.

Returns
RouteListingPreference This value may be null.

getRoutes

Added in API level 30
public List<MediaRoute2Info> getRoutes ()

Gets the unmodifiable list of routes currently known to the media router.

Please note that the list can be changed before callbacks are invoked.

Returns
List<MediaRoute2Info> the list of routes that contains at least one of the route features in discovery preferences registered by the application This value cannot be null.

getSystemController

Added in API level 30
public MediaRouter2.RoutingController getSystemController ()

Gets a RoutingController which can control the routes provided by system. e.g. Phone speaker, wired headset, Bluetooth, etc.

Note: The system controller can't be released. Calling RoutingController#release() will be ignored.

This method always returns the same instance.

Returns
MediaRouter2.RoutingController This value cannot be null.

registerControllerCallback

Added in API level 30
public void registerControllerCallback (Executor executor, 
                MediaRouter2.ControllerCallback callback)

Registers a ControllerCallback. If you register the same callback twice or more, it will be ignored.

Parameters
executor Executor: This value cannot be null. Callback and listener events are dispatched through this Executor, providing an easy way to control which thread is used. To dispatch events through the main thread of your application, you can use Context.getMainExecutor(). Otherwise, provide an Executor that dispatches to an appropriate thread.

callback MediaRouter2.ControllerCallback: This value cannot be null.

registerRouteCallback

Added in API level 30
public void registerRouteCallback (Executor executor, 
                MediaRouter2.RouteCallback routeCallback, 
                RouteDiscoveryPreference preference)

Registers a callback to discover routes and to receive events when they change.

If the specified callback is already registered, its registration will be updated for the given executor and discovery preference.

Parameters
executor Executor: This value cannot be null. Callback and listener events are dispatched through this Executor, providing an easy way to control which thread is used. To dispatch events through the main thread of your application, you can use Context.getMainExecutor(). Otherwise, provide an Executor that dispatches to an appropriate thread.

routeCallback MediaRouter2.RouteCallback: This value cannot be null.

preference RouteDiscoveryPreference: This value cannot be null.

registerRouteListingPreferenceUpdatedCallback

public void registerRouteListingPreferenceUpdatedCallback (Executor executor, 
                Consumer<RouteListingPreference> routeListingPreferenceCallback)

Registers the given callback to be invoked when the RouteListingPreference of the target router changes.

Calls using a previously registered callback will overwrite the previous executor.

Parameters
executor Executor: This value cannot be null. Callback and listener events are dispatched through this Executor, providing an easy way to control which thread is used. To dispatch events through the main thread of your application, you can use Context.getMainExecutor(). Otherwise, provide an Executor that dispatches to an appropriate thread.

routeListingPreferenceCallback Consumer: This value cannot be null.

registerTransferCallback

Added in API level 30
public void registerTransferCallback (Executor executor, 
                MediaRouter2.TransferCallback callback)

Registers a callback to get the result of transferTo(android.media.MediaRoute2Info). If you register the same callback twice or more, it will be ignored.

Parameters
executor Executor: the executor to execute the callback on This value cannot be null. Callback and listener events are dispatched through this Executor, providing an easy way to control which thread is used. To dispatch events through the main thread of your application, you can use Context.getMainExecutor(). Otherwise, provide an Executor that dispatches to an appropriate thread.

callback MediaRouter2.TransferCallback: the callback to register This value cannot be null.

setOnGetControllerHintsListener

Added in API level 30
public void setOnGetControllerHintsListener (MediaRouter2.OnGetControllerHintsListener listener)

Sets an OnGetControllerHintsListener to send hints when creating a RoutingController. To send the hints, listener should be set BEFORE calling transferTo(android.media.MediaRoute2Info).

Parameters
listener MediaRouter2.OnGetControllerHintsListener: A listener to send optional app-specific hints when creating a controller. null for unset.

setRouteListingPreference

Added in API level 34
public void setRouteListingPreference (RouteListingPreference routeListingPreference)

Sets the RouteListingPreference of the app associated to this media router.

Use this method to inform the system UI of the routes that you would like to list for media routing, via the Output Switcher.

You should call this method before registering any route callbacks and immediately after receiving any updates in order to keep the system UI in a consistent state. You can also call this method at any other point to update the listing preference dynamically.

Any calls to this method from a privileged router will throw an UnsupportedOperationException.

Notes:

  1. You should not include the ids of two or more routes with a match in their deduplication ids. If you do, the system will deduplicate them using its own criteria.
  2. You can use this method to rank routes in the output switcher, placing the more important routes first. The system might override the proposed ranking.
  3. You can use this method to avoid listing routes using dynamic criteria. For example, you can limit access to a specific type of device according to runtime criteria.

Parameters
routeListingPreference RouteListingPreference: The RouteListingPreference for the system to use for route listing. When null, the system uses its default listing criteria.

showSystemOutputSwitcher

Added in API level 34
public boolean showSystemOutputSwitcher ()

Shows the system output switcher dialog.

Should only be called when the context of MediaRouter2 is in the foreground and visible on the screen.

The appearance and precise behaviour of the system output switcher dialog may vary across different devices, OS versions, and form factors, but the basic functionality stays the same.

See Output Switcher documentation for more details.

Returns
boolean true if the output switcher dialog is being shown, or false if the call is ignored because the app is in the background.

stop

Added in API level 30
public void stop ()

Stops the current media routing. If the system controller controls the media routing, this method is a no-op.

transferTo

Added in API level 30
public void transferTo (MediaRoute2Info route)

Transfers the current media to the given route. If it's necessary a new RoutingController is created or it is handled within the current routing controller.

Parameters
route MediaRoute2Info: the route you want to transfer the current media to. Pass null to stop routing of the current media.

unregisterControllerCallback

Added in API level 30
public void unregisterControllerCallback (MediaRouter2.ControllerCallback callback)

Unregisters a ControllerCallback. The callback will no longer receive events. If the callback has not been added or been removed already, it is ignored.

Parameters
callback MediaRouter2.ControllerCallback: This value cannot be null.

unregisterRouteCallback

Added in API level 30
public void unregisterRouteCallback (MediaRouter2.RouteCallback routeCallback)

Unregisters the given callback. The callback will no longer receive events. If the callback has not been added or been removed already, it is ignored.

Parameters
routeCallback MediaRouter2.RouteCallback: the callback to unregister This value cannot be null.

unregisterRouteListingPreferenceUpdatedCallback

public void unregisterRouteListingPreferenceUpdatedCallback (Consumer<RouteListingPreference> callback)

Unregisters the given callback to not receive RouteListingPreference change events.

Parameters
callback Consumer: This value cannot be null.

unregisterTransferCallback

Added in API level 30
public void unregisterTransferCallback (MediaRouter2.TransferCallback callback)

Unregisters the given callback. The callback will no longer receive events. If the callback has not been added or been removed already, it is ignored.

Parameters
callback MediaRouter2.TransferCallback: the callback to unregister This value cannot be null.