Most visited

Recently visited

LeanbackPreferenceDialogFragment

public class LeanbackPreferenceDialogFragment
extends Fragment

java.lang.Object
   ↳ android.app.Fragment
     ↳ android.support.v17.preference.LeanbackPreferenceDialogFragment
Known Direct Subclasses


Summary

Inherited XML attributes

From class android.app.Fragment

Constants

String ARG_KEY

Inherited constants

From interface android.content.ComponentCallbacks2

Public constructors

LeanbackPreferenceDialogFragment()

Public methods

DialogPreference getPreference()
void onCreate(Bundle savedInstanceState)

Called to do initial creation of a fragment.

Inherited methods

From class android.app.Fragment
From class java.lang.Object
From interface android.content.ComponentCallbacks2
From interface android.view.View.OnCreateContextMenuListener
From interface android.content.ComponentCallbacks

Constants

ARG_KEY

String ARG_KEY

Constant Value: "key"

Public constructors

LeanbackPreferenceDialogFragment

LeanbackPreferenceDialogFragment ()

Public methods

getPreference

DialogPreference getPreference ()

Returns
DialogPreference

onCreate

void onCreate (Bundle savedInstanceState)

Called to do initial creation of a fragment. This is called after onAttach(Activity) and before onCreateView(LayoutInflater, ViewGroup, Bundle), but is not called if the fragment instance is retained across Activity re-creation (see setRetainInstance(boolean)).

Note that this can be called while the fragment's activity is still in the process of being created. As such, you can not rely on things like the activity's content view hierarchy being initialized at this point. If you want to do work once the activity itself is created, see onActivityCreated(Bundle).

If your app's targetSdkVersion is 23 or lower, child fragments being restored from the savedInstanceState are restored after onCreate returns. When targeting N or above and running on an N or newer platform version they are restored by Fragment.onCreate.

Parameters
savedInstanceState Bundle: If the fragment is being re-created from a previous saved state, this is the state.

Hooray!