Most visited

Recently visited

MediaRouteChooserDialogFragment

public class MediaRouteChooserDialogFragment
extends DialogFragment

java.lang.Object
   ↳ android.support.v4.app.Fragment
     ↳ android.support.v4.app.DialogFragment
       ↳ android.support.v7.app.MediaRouteChooserDialogFragment


Media route chooser dialog fragment.

Creates a MediaRouteChooserDialog. The application may subclass this dialog fragment to customize the media route chooser dialog.

Summary

Inherited constants

From class android.support.v4.app.DialogFragment

Public constructors

MediaRouteChooserDialogFragment()

Creates a media route chooser dialog fragment.

Public methods

MediaRouteSelector getRouteSelector()

Gets the media route selector for filtering the routes that the user can select.

void onConfigurationChanged(Configuration newConfig)

Called by the system when the device configuration changes while your component is running.

MediaRouteChooserDialog onCreateChooserDialog(Context context, Bundle savedInstanceState)

Called when the chooser dialog is being created.

Dialog onCreateDialog(Bundle savedInstanceState)

Override to build your own custom Dialog container.

void setRouteSelector(MediaRouteSelector selector)

Sets the media route selector for filtering the routes that the user can select.

Inherited methods

From class android.support.v4.app.DialogFragment
From class android.support.v4.app.Fragment
From class java.lang.Object
From interface android.content.DialogInterface.OnCancelListener
From interface android.content.DialogInterface.OnDismissListener
From interface android.content.ComponentCallbacks
From interface android.view.View.OnCreateContextMenuListener

Public constructors

MediaRouteChooserDialogFragment

MediaRouteChooserDialogFragment ()

Creates a media route chooser dialog fragment.

All subclasses of this class must also possess a default constructor.

Public methods

getRouteSelector

MediaRouteSelector getRouteSelector ()

Gets the media route selector for filtering the routes that the user can select.

Returns
MediaRouteSelector The selector, never null.

onConfigurationChanged

void onConfigurationChanged (Configuration newConfig)

Called by the system when the device configuration changes while your component is running. Note that, unlike activities, other components are never restarted when a configuration changes: they must always deal with the results of the change, such as by re-retrieving resources.

At the time that this function has been called, your Resources object will have been updated to return resource values matching the new configuration.

For more information, read Handling Runtime Changes.

Parameters
newConfig Configuration: The new device configuration.

onCreateChooserDialog

MediaRouteChooserDialog onCreateChooserDialog (Context context, 
                Bundle savedInstanceState)

Called when the chooser dialog is being created.

Subclasses may override this method to customize the dialog.

Parameters
context Context
savedInstanceState Bundle
Returns
MediaRouteChooserDialog

onCreateDialog

Dialog onCreateDialog (Bundle savedInstanceState)

Override to build your own custom Dialog container. This is typically used to show an AlertDialog instead of a generic Dialog; when doing so, onCreateView(LayoutInflater, ViewGroup, Bundle) does not need to be implemented since the AlertDialog takes care of its own content.

This method will be called after onCreate(Bundle) and before onCreateView(LayoutInflater, ViewGroup, Bundle). The default implementation simply instantiates and returns a Dialog class.

Note: DialogFragment own the Dialog.setOnCancelListener and Dialog.setOnDismissListener callbacks. You must not set them yourself. To find out about these events, override onCancel(DialogInterface) and onDismiss(DialogInterface).

Parameters
savedInstanceState Bundle: The last saved instance state of the Fragment, or null if this is a freshly created Fragment.
Returns
Dialog Return a new Dialog instance to be displayed by the Fragment.

setRouteSelector

void setRouteSelector (MediaRouteSelector selector)

Sets the media route selector for filtering the routes that the user can select. This method must be called before the fragment is added.

Parameters
selector MediaRouteSelector: The selector to set.

Hooray!