Home | History | Annotate | Download | only in phone

Lines Matching defs:dialog

23 import android.app.Dialog;
94 // Dialog IDs
280 * decision may also involve popping up a dialog to ask the user to
385 // isFinishing() return false when 1. broadcast is still ongoing, or 2. dialog is being
674 // disturb the dialog), but we *do* need it here in onStop() to be
675 // sure we clean up if the user hits HOME while the dialog is up.
677 // Note it's safe to call removeDialog() even if there's no dialog
689 * alternative action to take), or otherwise display an error dialog,
696 // Just show a generic "voice calling not supported" dialog.
699 // or cancels the dialog.
703 protected Dialog onCreateDialog(int id) {
704 Dialog dialog;
707 dialog = new AlertDialog.Builder(this)
716 dialog = null;
719 return dialog;
724 public void onClick(DialogInterface dialog, int id) {
725 // DIALOG_NOT_VOICE_CAPABLE is the only dialog we ever use (so far
732 public void onCancel(DialogInterface dialog) {
733 // DIALOG_NOT_VOICE_CAPABLE is the only dialog we ever use (so far