Home | History | Annotate | Download | only in phone

Lines Matching refs:Dialog

4 import android.app.Dialog;
31 public void onClick(DialogInterface dialog, int which) {
32 dialog.dismiss();
37 public void onClick(DialogInterface dialog, int which) {
38 dialog.dismiss();
63 protected Dialog onCreateDialog(int id) {
65 ProgressDialog dialog = new ProgressDialog(this);
66 dialog.setTitle(getText(R.string.updating_title));
67 dialog.setIndeterminate(true);
71 dialog.setCancelable(true);
72 dialog.setOnCancelListener(this);
73 dialog.setMessage(getText(R.string.reading_settings));
74 return dialog;
76 dialog.setCancelable(false);
77 dialog.setMessage(getText(R.string.updating_settings));
78 return dialog;
99 // The error is not recoverable on dialog exit.
125 // The error is not recoverable on dialog exit.
133 AlertDialog dialog = builder.create();
135 // make the dialog more obvious by blurring the background.
136 dialog.getWindow().addFlags(WindowManager.LayoutParams.FLAG_BLUR_BEHIND);
138 return dialog;
220 public void onCancel(DialogInterface dialog) {
230 // at the time we would normally have shown the dialog, so we didn't