public interface

MediaRouter.OnPrepareTransferListener

 androidx.mediarouter.media.MediaRouter.OnPrepareTransferListener

Overview

Listener for receiving events when the selected route is about to be changed.

Summary

Methods
public <any>onPrepareTransfer(MediaRouter.RouteInfo fromRoute, MediaRouter.RouteInfo toRoute)

Implement this to handle transfer seamlessly.

Methods

public <any> onPrepareTransfer(MediaRouter.RouteInfo fromRoute, MediaRouter.RouteInfo toRoute)

Implement this to handle transfer seamlessly.

Setting the listener will defer stopping the previous route, from which you may get the media status to resume media seamlessly on the new route. When the transfer is prepared, set the returned future to stop media being played on the previous route and release resources. This method is called on the main thread.

MediaRouter.Callback and MediaRouter.Callback are called after the future is done.

Parameters:

fromRoute: The route that is about to be unselected.
toRoute: The route that is about to be selected.

Returns:

A whose completion indicates that the transfer is prepared or null to indicate that no preparation is needed. If a future is returned, until the future is completed, the media continues to be played on the previous route.