public
class
MediaRouteChooserDialog
extends Dialog
java.lang.Object | ||
↳ | android.app.Dialog | |
↳ | android.support.v7.app.MediaRouteChooserDialog |
This class implements the route chooser dialog for MediaRouter
.
This dialog allows the user to choose a route that matches a given selector.
See also:
Inherited constants |
---|
From
interface
android.content.DialogInterface
|
Public constructors | |
---|---|
MediaRouteChooserDialog(Context context)
|
|
MediaRouteChooserDialog(Context context, int theme)
|
Public methods | |
---|---|
MediaRouteSelector
|
getRouteSelector()
Gets the media route selector for filtering the routes that the user can select. |
void
|
onAttachedToWindow()
Called when the window has been attached to the window manager. |
void
|
onDetachedFromWindow()
Called when the window has been attached to the window manager. |
boolean
|
onFilterRoute(MediaRouter.RouteInfo route)
Returns true if the route should be included in the list. |
void
|
onFilterRoutes(List<MediaRouter.RouteInfo> routes)
Called to filter the set of routes that should be included in the list. |
void
|
refreshRoutes()
Refreshes the list of routes that are shown in the chooser dialog. |
void
|
setRouteSelector(MediaRouteSelector selector)
Sets the media route selector for filtering the routes that the user can select. |
Protected methods | |
---|---|
void
|
onCreate(Bundle savedInstanceState)
Similar to |
Inherited methods | |
---|---|
From
class
android.app.Dialog
| |
From
class
java.lang.Object
| |
From
interface
android.content.DialogInterface
| |
From
interface
android.view.Window.Callback
| |
From
interface
android.view.KeyEvent.Callback
| |
From
interface
android.view.View.OnCreateContextMenuListener
|
MediaRouteChooserDialog (Context context, int theme)
Parameters | |
---|---|
context |
Context
|
theme |
int
|
MediaRouteSelector getRouteSelector ()
Gets the media route selector for filtering the routes that the user can select.
Returns | |
---|---|
MediaRouteSelector |
The selector, never null. |
void onAttachedToWindow ()
Called when the window has been attached to the window manager.
See View.onAttachedToWindow()
for more information.
void onDetachedFromWindow ()
Called when the window has been attached to the window manager.
See View.onDetachedFromWindow()
for more information.
boolean onFilterRoute (MediaRouter.RouteInfo route)
Returns true if the route should be included in the list.
The default implementation returns true for enabled non-default routes that match the selector. Subclasses can override this method to filter routes differently.
Parameters | |
---|---|
route |
MediaRouter.RouteInfo :
The route to consider, never null. |
Returns | |
---|---|
boolean |
True if the route should be included in the chooser dialog. |
void onFilterRoutes (List<MediaRouter.RouteInfo> routes)
Called to filter the set of routes that should be included in the list.
The default implementation iterates over all routes in the provided list and
removes those for which onFilterRoute(MediaRouter.RouteInfo)
returns false.
Parameters | |
---|---|
routes |
List :
The list of routes to filter in-place, never null.
|
void refreshRoutes ()
Refreshes the list of routes that are shown in the chooser dialog.
void setRouteSelector (MediaRouteSelector selector)
Sets the media route selector for filtering the routes that the user can select.
Parameters | |
---|---|
selector |
MediaRouteSelector :
The selector, must not be null.
|
void onCreate (Bundle savedInstanceState)
Similar to onCreate(Bundle)
, you should initialize your dialog
in this method, including calling setContentView(View)
.
Parameters | |
---|---|
savedInstanceState |
Bundle :
If this dialog is being reinitialized after a
the hosting activity was previously shut down, holds the result from
the most recent call to onSaveInstanceState() , or null if this
is the first time.
|