Home | History | Annotate | Download | only in phone

Lines Matching full:dialog

21 import android.app.Dialog;
87 // Dialog IDs
241 * decision may also involve popping up a dialog to ask the user to
346 dialog is being
624 // disturb the dialog), but we *do* need it here in onStop() to be
625 // sure we clean up if the user hits HOME while the dialog is up.
627 // Note it's safe to call removeDialog() even if there's no dialog
639 * alternative action to take), or otherwise display an error dialog,
671 // supported" dialog.
674 // or cancels the dialog.
678 Dialog onCreateDialog(int id) {
679 Dialog dialog;
682 dialog = new AlertDialog.Builder(this)
691 dialog = null;
694 return dialog;
699 public void onClick(DialogInterface dialog, int id) {
700 // DIALOG_NOT_VOICE_CAPABLE is the only dialog we ever use (so far
707 public void onCancel(DialogInterface dialog) {
708 // DIALOG_NOT_VOICE_CAPABLE is the only dialog we ever use (so far