Home | History | Annotate | Download | only in editor

Lines Matching defs:dialog

20 import android.app.Dialog;
375 * Prepare dialog for entering a custom label. The input value is trimmed: white spaces before
381 private Dialog createCustomDialog() {
396 public void onClick(DialogInterface dialog, int which) {
421 final AlertDialog dialog = builder.create();
422 dialog.setOnShowListener(new OnShowListener() {
425 updateCustomDialogOkButtonState(dialog, editText);
439 updateCustomDialogOkButtonState(dialog, editText);
442 dialog.getWindow().setSoftInputMode(
445 return dialog;
448 /* package */ void updateCustomDialogOkButtonState(AlertDialog dialog, EditText editText) {
449 final Button okButton = dialog.getButton(AlertDialog.BUTTON_POSITIVE);
454 * Called after the label has changed (either chosen from the list or entered in the Dialog)
503 public Dialog createDialog(Bundle bundle) {