Home | History | Annotate | Download | only in util

Lines Matching defs:dialog

20 import android.app.Dialog;
41 * To actually show a Dialog, the View uses {@link DialogManager#showDialogInView(View, Bundle)},
63 * Called by a View to show a dialog. It has to pass itself and a Bundle with extra information.
85 public Dialog onCreateDialog(final int id, final Bundle bundle) {
101 final Dialog dialog = ((DialogShowingView)view).createDialog(bundle);
102 if (dialog == null) {
103 return dialog;
106 // As we will never re-use this dialog, we can completely kill it here
107 dialog.setOnDismissListener(new OnDismissListener() {
112 return dialog;
120 * Callback function to create a Dialog. Notice that the DialogManager overwrites the
121 * OnDismissListener on the returned Dialog, so the View should not use this Listener itself
123 Dialog createDialog(Bundle bundle);