Home | History | Annotate | Download | only in phone

Lines Matching defs:dialog

21 import android.app.Dialog;
125 private String mLastNumber; // last number we tried to dial. Used to restore error dialog.
553 // erase the number and throw up an alert dialog.
606 protected Dialog onCreateDialog(int id) {
607 AlertDialog dialog = null;
609 // construct dialog
610 dialog = new AlertDialog.Builder(this)
616 // blur stuff behind the dialog
617 dialog.getWindow().addFlags(WindowManager.LayoutParams.FLAG_BLUR_BEHIND);
619 return dialog;
623 protected void onPrepareDialog(int id, Dialog dialog) {
624 super.onPrepareDialog(id, dialog);
626 AlertDialog alert = (AlertDialog) dialog;