Home | History | Annotate | Download | only in ui

Lines Matching defs:dialog

25 import android.app.Dialog;
433 /** If a confirmation dialog is being show, the listener for the positive action. */
436 * If a confirmation dialog is being show, the resource of the action: R.id.delete, etc. This
441 * If a confirmation dialog is being shown, this is true if the dialog acts on the selected set
1329 public Dialog onCreateDialog(int id, Bundle bundle) {
1432 final FolderSelectionDialog dialog = FolderSelectionDialog.getInstance(
1436 if (dialog != null) {
1437 dialog.show();
1813 * Displays a the auto-advance dialog, and when the user makes a selection, the preference is
1834 public void onClick(DialogInterface dialog, int whichItem) {
1847 // Dismiss the dialog, as clicking the items in the list doesn't close the
1848 // dialog.
1849 dialog.dismiss();
1920 * @param showDialog true if a confirmation dialog is to be shown, false otherwise.
1921 * @param confirmResource the resource ID of the string that is shown in the confirmation dialog
1990 public void onPrepareDialog(int id, Dialog dialog, Bundle bundle) {
2048 // If there is a dialog being shown, save the state so we can create a listener for it.
2272 // The dialog listener needs to happen *after* the selected set is restored.
2275 // confirm dialog fragment (delete/archive/...), then do it here.
4082 public void onClick(DialogInterface dialog, int which) {
4096 * Sets the listener for the positive action on a confirmation dialog. Since only a single
4097 * confirmation dialog can be shown, this overwrites the previous listener. It is safe to
4099 * @param listener the listener that will perform the task for this dialog's positive action.
4100 * @param action the action that created this dialog.