Home | History | Annotate | Download | only in phone

Lines Matching full:dialog

21 import android.app.Dialog;
112 private String mLastNumber; // last number we tried to dial. Used to restore error dialog.
504 // erase the number and throw up an alert dialog.
557 protected Dialog onCreateDialog(int id) {
558 AlertDialog dialog = null;
560 // construct dialog
561 dialog = new AlertDialog.Builder(this)
567 // blur stuff behind the dialog
568 dialog.getWindow().addFlags(WindowManager.LayoutParams.FLAG_BLUR_BEHIND);
570 return dialog;
574 protected void onPrepareDialog(int id, Dialog dialog) {
575 super.onPrepareDialog(id, dialog);
577 AlertDialog alert = (AlertDialog) dialog;