Home | History | Annotate | Download | only in launcher2

Lines Matching defs:Dialog

23 import android.app.Dialog;
650 // If there are multiple keystrokes before the search dialog takes focus,
960 // Unlock the workspace if the dialog was showing
962 // An exception is thrown if the dialog is not visible, which is fine
967 // Unlock the workspace if the dialog was showing
969 // An exception is thrown if the dialog is not visible, which is fine
1775 protected Dialog onCreateDialog(int id) {
1787 protected void onPrepareDialog(int id, Dialog dialog) {
1793 EditText input = (EditText) dialog.findViewById(R.id.folder_name);
1837 Dialog createDialog() {
1845 builder.setOnCancelListener(new Dialog.OnCancelListener() {
1846 public void onCancel(DialogInterface dialog) {
1851 new Dialog.OnClickListener() {
1852 public void onClick(DialogInterface dialog, int which) {
1858 new Dialog.OnClickListener() {
1859 public void onClick(DialogInterface dialog, int which) {
1866 final AlertDialog dialog = builder.create();
1867 dialog.setOnShowListener(new DialogInterface.OnShowListener() {
1868 public void onShow(DialogInterface dialog) {
1877 return dialog;
1993 * Displays the shortcut creation dialog and launches, if necessary, the
2002 Dialog createDialog() {
2011 AlertDialog dialog = builder.create();
2012 dialog.setOnCancelListener(this);
2013 dialog.setOnDismissListener(this);
2014 dialog.setOnShowListener(this);
2016 return dialog;
2019 public void onCancel(DialogInterface dialog) {
2024 public void onDismiss(DialogInterface dialog) {
2031 // An exception is thrown if the dialog is not visible, which is fine
2036 * Handle the action clicked in the "Add to home" dialog.
2038 public void onClick(DialogInterface dialog, int which) {
2091 public void onShow(DialogInterface dialog) {