Home | History | Annotate | Download | only in setup

Lines Matching refs:dialog

20 import android.app.Dialog;
31 * Simple dialog that shows progress as we work through the settings checks.
53 * Create a dialog that reports progress
65 * Update the progress of an existing dialog
70 final AlertDialog dialog = (AlertDialog) getDialog();
71 if (dialog != null && mProgressString != null) {
72 dialog.setMessage(mProgressString);
77 public Dialog onCreateDialog(Bundle savedInstanceState) {
92 final ProgressDialog dialog = new ProgressDialog(context);
93 dialog.setIndeterminate(true);
94 dialog.setMessage(mProgressString);
95 dialog.setButton(DialogInterface.BUTTON_NEGATIVE,
99 public void onClick(DialogInterface dialog, int which) {
100 dialog.cancel();
103 return dialog;
108 * negative button (e.g. touching outside the dialog), and stop the checker
111 public void onCancel(DialogInterface dialog) {
112 super.onCancel(dialog);
117 LogUtils.d(LogUtils.TAG, "Null callback in CheckSettings dialog onCancel");