Home | History | Annotate | Download | only in calendar

Lines Matching defs:dialog

24 import android.app.Dialog;
44 * deletion, then this pops up a confirmation dialog. If the user confirms,
48 * If a repeating event is selected for deletion, then this pops up dialog
89 private Dialog.OnDismissListener mDismissListener;
135 public void onClick(DialogInterface dialog, int button) {
154 public void onClick(DialogInterface dialog, int button) {
171 public void onClick(DialogInterface dialog, int button) {
187 public void onClick(DialogInterface dialog, int button) {
197 * first popping up a dialog asking for confirmation (if the event is
198 * a normal event) or a dialog asking which events to delete (if the
264 // If this is a repeating event, then pop up a dialog asking the
270 AlertDialog dialog = new AlertDialog.Builder(mContext)
276 // This is a normal event. Pop up a confirmation dialog.
277 dialog.setButton(DialogInterface.BUTTON_POSITIVE,
281 // This is an exception event. Pop up a confirmation dialog.
282 dialog.setButton(DialogInterface.BUTTON_POSITIVE,
286 dialog.setOnDismissListener(mDismissListener);
287 dialog.show();
288 mAlertDialog = dialog;
290 // This is a repeating event. Pop up a dialog asking which events
323 AlertDialog dialog = new AlertDialog.Builder(mContext)
330 dialog.setOnDismissListener(mDismissListener);
331 mAlertDialog = dialog;
336 Button ok = dialog.getButton(DialogInterface.BUTTON_POSITIVE);
454 public void setOnDismissListener(Dialog.OnDismissListener listener) {