Most visited

Recently visited

EditTextPreferenceDialogFragmentCompat

public class EditTextPreferenceDialogFragmentCompat
extends PreferenceDialogFragmentCompat

java.lang.Object
   ↳ android.support.v4.app.Fragment
     ↳ android.support.v4.app.DialogFragment
       ↳ android.support.v7.preference.PreferenceDialogFragmentCompat
         ↳ android.support.v7.preference.EditTextPreferenceDialogFragmentCompat


Summary

Inherited constants

From class android.support.v7.preference.PreferenceDialogFragmentCompat
From class android.support.v4.app.DialogFragment

Public constructors

EditTextPreferenceDialogFragmentCompat()

Public methods

static EditTextPreferenceDialogFragmentCompat newInstance(String key)
void onCreate(Bundle savedInstanceState)

被调用来做一个片段的初始创建。

void onDialogClosed(boolean positiveResult)
void onSaveInstanceState(Bundle outState)

打电话询问片段以保存其当前的动态状态,以便稍后可以在重新启动其进程的新实例时重新构建它。

Protected methods

void onBindDialogView(View view)

在数据对话框的内容视图中绑定视图。

Inherited methods

From class android.support.v7.preference.PreferenceDialogFragmentCompat
From class android.support.v4.app.DialogFragment
From class android.support.v4.app.Fragment
From class java.lang.Object
From interface android.content.DialogInterface.OnClickListener
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

EditTextPreferenceDialogFragmentCompat

EditTextPreferenceDialogFragmentCompat ()

Public methods

newInstance

EditTextPreferenceDialogFragmentCompat newInstance (String key)

Parameters
key String
Returns
EditTextPreferenceDialogFragmentCompat

onCreate

void onCreate (Bundle savedInstanceState)

被调用来做一个片段的初始创建。 这是在onAttach(Activity)之后和onCreateView(LayoutInflater, ViewGroup, Bundle)之前onCreateView(LayoutInflater, ViewGroup, Bundle)

请注意,这可以在片段的活动仍处于创建过程中时调用。 因此,您不能依赖于此时正在初始化活动的内容视图层次结构。 如果您想在创建活动本身后进行工作,请参阅onActivityCreated(Bundle)

任何恢复的子片段将在基础 Fragment.onCreate方法返回之前创建。

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

onDialogClosed

void onDialogClosed (boolean positiveResult)

Parameters
positiveResult boolean

onSaveInstanceState

void onSaveInstanceState (Bundle outState)

打电话询问片段以保存其当前的动态状态,以便稍后可以在重新启动其进程的新实例时重新构建它。 如果片段的新实例后需要创建,您的包放在这里的数据将提供给包可onCreate(Bundle)onCreateView(LayoutInflater, ViewGroup, Bundle) ,并onActivityCreated(Bundle)

这对应于Activity.onSaveInstanceState(Bundle)并且大多数讨论也适用于此处。 但请注意: 此方法可能在onDestroy()之前的任何时间被调用 有很多情况下,碎片可能大部分被拆除(例如,当放置在背堆栈上而没有UI显示时),但是它的状态不会被保存直到其拥有的活动实际上需要保存其状态。

Parameters
outState Bundle: Bundle in which to place your saved state.

Protected methods

onBindDialogView

void onBindDialogView (View view)

在数据对话框的内容视图中绑定视图。

确保通过超类实现进行调用。

Parameters
view View: The content View of the dialog, if it is custom.

Hooray!