Home | History | Annotate | Download | only in mail

Lines Matching defs:dialog

26  * be dismissed before showing. Once visible, the dialog will be visible for at
76 // This covers the case where the dialog was not shown
77 // at all yet OR enough time of the dialog showing
87 * Dismiss the dialog, immediately if necessary.
89 * @param force If true, dismiss the dialog right away.
107 public void onShow(DialogInterface dialog) {
108 // When the dialog is actually shown, start the timer.
119 MinTimeProgressDialog dialog = new MinTimeProgressDialog(context);
120 dialog.setTitle(title);
121 dialog.setMessage(message);
122 dialog.setIndeterminate(indeterminate);
123 dialog.setCancelable(cancelable);
124 dialog.setOnCancelListener(cancelListener);
125 dialog.setOnShowListener(dialog);
126 dialog.show();
128 return dialog;