HomeSort by relevance Sort by last modified time
    Searched defs:setButton (Results 1 - 25 of 37) sorted by null

1 2

  /packages/apps/Email/src/com/android/email/
RequireManualSyncDialog.java 32 setButton(DialogInterface.BUTTON_POSITIVE, context.getString(android.R.string.ok), this);
  /frameworks/base/services/java/com/android/server/am/
FactoryErrorDialog.java 30 setButton(DialogInterface.BUTTON_POSITIVE,
AppWaitingForDebuggerDialog.java 53 setButton(DialogInterface.BUTTON_POSITIVE, "Force Close", mHandler.obtainMessage(1, app));
AppNotRespondingDialog.java 80 setButton(DialogInterface.BUTTON_POSITIVE,
83 setButton(DialogInterface.BUTTON_NEGATIVE,
88 setButton(DialogInterface.BUTTON_NEUTRAL,
AppErrorDialog.java 64 setButton(DialogInterface.BUTTON_POSITIVE,
69 setButton(DialogInterface.BUTTON_NEGATIVE,
StrictModeViolationDialog.java 64 setButton(DialogInterface.BUTTON_POSITIVE,
69 setButton(DialogInterface.BUTTON_NEGATIVE,
  /packages/apps/Contacts/src/com/android/contacts/activities/
NonPhoneActivity.java 72 alertDialog.setButton(DialogInterface.BUTTON_POSITIVE,
74 alertDialog.setButton(DialogInterface.BUTTON_NEGATIVE,
  /packages/apps/Mms/src/com/android/mms/ui/
NumberPickerDialog.java 84 setButton(DialogInterface.BUTTON_POSITIVE, context.getText(R.string.set), this);
85 setButton(DialogInterface.BUTTON_NEGATIVE, context.getText(R.string.no),
  /packages/apps/Settings/src/com/android/settings/bluetooth/
Utils.java 71 dialog.setButton(DialogInterface.BUTTON_POSITIVE,
  /packages/apps/Settings/src/com/android/settings/wifi/
WifiDialog.java 83 setButton(BUTTON_SUBMIT, text, mListener);
88 setButton(BUTTON_FORGET, text, mListener);
93 setButton(BUTTON_NEGATIVE, text, mListener);
WifiApDialog.java 133 setButton(BUTTON_SUBMIT, context.getString(R.string.wifi_save), mListener);
134 setButton(DialogInterface.BUTTON_NEGATIVE,
  /packages/apps/Settings/src/com/android/settings/wifi/p2p/
WifiP2pDialog.java 101 setButton(BUTTON_SUBMIT, context.getString(R.string.wifi_connect), mListener);
102 setButton(DialogInterface.BUTTON_NEGATIVE,
  /frameworks/base/core/java/android/app/
AlertDialog.java 220 public void setButton(int whichButton, CharSequence text, Message msg) {
221 mAlert.setButton(whichButton, text, null, msg);
234 public void setButton(int whichButton, CharSequence text, OnClickListener listener) {
235 mAlert.setButton(whichButton, text, listener, null);
239 * @deprecated Use {@link #setButton(int, CharSequence, Message)} with
243 public void setButton(CharSequence text, Message msg) {
244 setButton(BUTTON_POSITIVE, text, msg);
248 * @deprecated Use {@link #setButton(int, CharSequence, Message)} with
253 setButton(BUTTON_NEGATIVE, text, msg);
257 * @deprecated Use {@link #setButton(int, CharSequence, Message)} wit
    [all...]
DatePickerDialog.java 95 setButton(BUTTON_POSITIVE, themeContext.getText(R.string.date_time_set), this);
96 setButton(BUTTON_NEGATIVE, themeContext.getText(R.string.cancel), (OnClickListener) null);
TimePickerDialog.java 99 setButton(BUTTON_POSITIVE, themeContext.getText(R.string.date_time_set), this);
100 setButton(BUTTON_NEGATIVE, themeContext.getText(R.string.cancel),
  /development/samples/ApiDemos/src/com/example/android/apis/app/
AlertDialogSamples.java 191 mProgressDialog.setButton(DialogInterface.BUTTON_POSITIVE,
198 mProgressDialog.setButton(DialogInterface.BUTTON_NEGATIVE,
  /packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
CellBroadcastAlertDialog.java 106 setButton(DialogInterface.BUTTON_NEUTRAL, context.getText(R.string.button_dismiss),
  /packages/apps/Launcher2/src/com/android/launcher2/
WallpaperChooserDialogFragment.java 156 View setButton = view.findViewById(R.id.set);
157 setButton.setOnClickListener(new OnClickListener() {
  /frameworks/base/packages/VpnDialogs/src/com/android/vpndialogs/
ManageDialog.java 103 mDialog.setButton(DialogInterface.BUTTON_POSITIVE,
  /packages/apps/Contacts/src/com/android/contacts/datepicker/
DatePickerDialog.java 159 setButton(BUTTON_POSITIVE, context.getText(com.android.internal.R.string.date_time_set),
161 setButton(BUTTON_NEGATIVE, context.getText(android.R.string.cancel),
  /packages/apps/Calendar/src/com/android/calendar/
DeleteEventHelper.java 277 dialog.setButton(DialogInterface.BUTTON_POSITIVE,
282 dialog.setButton(DialogInterface.BUTTON_POSITIVE,
  /packages/apps/Phone/src/com/android/phone/
SimContacts.java 298 mProgressDialog.setButton(DialogInterface.BUTTON_NEGATIVE,
  /packages/apps/Settings/src/com/android/settings/vpn2/
VpnDialog.java 156 setButton(DialogInterface.BUTTON_POSITIVE,
165 setButton(DialogInterface.BUTTON_POSITIVE,
170 setButton(DialogInterface.BUTTON_NEGATIVE,
  /cts/tests/src/android/app/cts/
DialogStubActivity.java 187 mAlertDialog.setButton(getString(R.string.alert_dialog_positive), positiveMessage);
251 mAlertDialog.setButton(getString(R.string.alert_dialog_positive), positiveListener);
255 mAlertDialog.setButton(DialogInterface.BUTTON_POSITIVE,
257 mAlertDialog.setButton(DialogInterface.BUTTON_NEGATIVE,
259 mAlertDialog.setButton(DialogInterface.BUTTON_NEUTRAL,
  /frameworks/base/core/java/com/android/internal/app/
AlertController.java 298 public void setButton(int whichButton, CharSequence text,
814 dialog.setButton(DialogInterface.BUTTON_POSITIVE, mPositiveButtonText,
818 dialog.setButton(DialogInterface.BUTTON_NEGATIVE, mNegativeButtonText,
822 dialog.setButton(DialogInterface.BUTTON_NEUTRAL, mNeutralButtonText,
    [all...]

Completed in 472 milliseconds

1 2