Home | History | Annotate | Download | only in settings

Lines Matching full:dialog

19 import android.app.Dialog;
40 * Base class for Settings fragments, with some helper functions and dialog management.
143 // Dialog management
147 Log.e(TAG, "Old dialog fragment not null!");
153 public Dialog onCreateDialog(int dialogId) {
159 // To be able to dismiss dialog at that time, don't check
168 * Sets the OnCancelListener of the dialog shown. This method can only be
179 * Sets the OnDismissListener of the dialog shown. This method can only be
236 public Dialog onCreateDialog(Bundle savedInstanceState) {
251 // This dialog fragment could be created from non-SettingsPreferenceFragment
261 public void onCancel(DialogInterface dialog) {
262 super.onCancel(dialog);
264 mOnCancelListener.onCancel(dialog);
269 public void onDismiss(DialogInterface dialog) {
270 super.onDismiss(dialog);
272 mOnDismissListener.onDismiss(dialog);
284 // This dialog fragment could be created from non-SettingsPreferenceFragment
286 // in case the dialog is not explicitly removed by removeDialog()