Lines Matching full:dialog
19 import android.app.Dialog;
38 * Base class for Settings fragments, with some helper functions and dialog management.
131 // Dialog management
135 Log.e(TAG, "Old dialog fragment not null!");
141 public Dialog onCreateDialog(int dialogId) {
147 // To be able to dismiss dialog at that time, don't check
156 * Sets the OnCancelListener of the dialog shown. This method can only be
167 * Sets the OnDismissListener of the dialog shown. This method can only be
211 public Dialog onCreateDialog(Bundle savedInstanceState) {
223 // This dialog fragment could be created from non-SettingsPreferenceFragment
233 public void onCancel(DialogInterface dialog) {
234 super.onCancel(dialog);
236 mOnCancelListener.onCancel(dialog);
241 public void onDismiss(DialogInterface dialog) {
242 super.onDismiss(dialog);
244 mOnDismissListener.onDismiss(dialog);
256 // This dialog fragment could be created from non-SettingsPreferenceFragment
258 // in case the dialog is not explicitly removed by removeDialog()