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

1 2 3

  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
SystemUIDialog.java 59 setButton(BUTTON_POSITIVE, mContext.getString(resId), onClick);
63 setButton(BUTTON_NEGATIVE, mContext.getString(resId), onClick);
  /packages/apps/Settings/src/com/android/settings/vpn2/
AppDialog.java 72 setButton(DialogInterface.BUTTON_NEGATIVE,
76 setButton(DialogInterface.BUTTON_POSITIVE,
  /development/samples/devbytes/animation/ViewAnimations/src/com/example/android/viewanimations/
ViewAnimations.java 54 final Button setButton = (Button) findViewById(R.id.setButton);
87 setupAnimation(setButton, setAnimation, R.anim.set_anim);
  /frameworks/base/core/java/android/app/
AlertDialog.java 307 public void setButton(int whichButton, CharSequence text, Message msg) {
308 mAlert.setButton(whichButton, text, null, msg);
321 public void setButton(int whichButton, CharSequence text, OnClickListener listener) {
322 mAlert.setButton(whichButton, text, listener, null);
326 * @deprecated Use {@link #setButton(int, CharSequence, Message)} with
330 public void setButton(CharSequence text, Message msg) {
331 setButton(BUTTON_POSITIVE, text, msg);
335 * @deprecated Use {@link #setButton(int, CharSequence, Message)} with
340 setButton(BUTTON_NEGATIVE, text, msg);
344 * @deprecated Use {@link #setButton(int, CharSequence, Message)} wit
    [all...]
TimePickerDialog.java 123 setButton(BUTTON_POSITIVE, themeContext.getString(R.string.ok), this);
124 setButton(BUTTON_NEGATIVE, themeContext.getString(R.string.cancel), this);
DatePickerDialog.java 114 setButton(BUTTON_POSITIVE, themeContext.getString(R.string.ok), this);
115 setButton(BUTTON_NEGATIVE, themeContext.getString(R.string.cancel), this);
  /packages/apps/Settings/src/com/android/settings/wifi/
WifiDialog.java 115 setButton(BUTTON_SUBMIT, text, mListener);
120 setButton(BUTTON_FORGET, text, mListener);
125 setButton(BUTTON_NEGATIVE, text, mListener);
WifiApDialog.java 152 setButton(BUTTON_SUBMIT, context.getString(R.string.wifi_save), mListener);
153 setButton(DialogInterface.BUTTON_NEGATIVE,
  /frameworks/base/services/core/java/com/android/server/am/
FactoryErrorDialog.java 31 setButton(DialogInterface.BUTTON_POSITIVE,
AppNotRespondingDialog.java 78 setButton(DialogInterface.BUTTON_POSITIVE,
81 setButton(DialogInterface.BUTTON_NEGATIVE,
86 setButton(DialogInterface.BUTTON_NEUTRAL,
AppErrorDialog.java 62 setButton(DialogInterface.BUTTON_POSITIVE,
67 setButton(DialogInterface.BUTTON_NEGATIVE,
StrictModeViolationDialog.java 66 setButton(DialogInterface.BUTTON_POSITIVE,
71 setButton(DialogInterface.BUTTON_NEGATIVE,
AppWaitingForDebuggerDialog.java 54 setButton(DialogInterface.BUTTON_POSITIVE, "Force Close", mHandler.obtainMessage(1, app));
  /development/samples/devbytes/animation/PropertyAnimations/src/com/example/android/propertyanimations/
PropertyAnimations.java 53 final Button setButton = (Button) findViewById(R.id.setButton);
91 setupAnimation(setButton, setAnimation, R.animator.combo);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
SafetyWarningDialog.java 51 setButton(DialogInterface.BUTTON_POSITIVE,
53 setButton(DialogInterface.BUTTON_NEGATIVE,
  /packages/apps/Contacts/src/com/android/contacts/
NonPhoneActivity.java 82 alertDialog.setButton(DialogInterface.BUTTON_POSITIVE,
84 alertDialog.setButton(DialogInterface.BUTTON_NEGATIVE,
  /packages/apps/Calendar/src/com/android/calendar/event/
EventColorPickerDialog.java 70 mAlertDialog.setButton(DialogInterface.BUTTON_NEUTRAL,
  /frameworks/base/packages/SystemUI/src/com/android/systemui/
GuestResumeSessionReceiver.java 160 setButton(BUTTON_WIPE,
162 setButton(BUTTON_DONTWIPE,
  /cts/tests/app/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/support/v7/appcompat/src/android/support/v7/app/
AlertDialog.java 194 public void setButton(int whichButton, CharSequence text, Message msg) {
195 mAlert.setButton(whichButton, text, null, msg);
208 public void setButton(int whichButton, CharSequence text, OnClickListener listener) {
209 mAlert.setButton(whichButton, text, listener, null);
    [all...]
  /packages/apps/Email/src/com/android/email/activity/setup/
CheckSettingsProgressDialogFragment.java 95 dialog.setButton(DialogInterface.BUTTON_NEGATIVE,
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
QSFooter.java 142 mDialog.setButton(DialogInterface.BUTTON_POSITIVE, getPositiveButton(), this);
144 mDialog.setButton(DialogInterface.BUTTON_NEGATIVE, getNegativeButton(), this);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/tuner/
TunerService.java 175 dialog.setButton(DialogInterface.BUTTON_NEGATIVE, context.getString(R.string.cancel),
177 dialog.setButton(DialogInterface.BUTTON_POSITIVE,
  /packages/apps/Contacts/src/com/android/contacts/datepicker/
DatePickerDialog.java 159 setButton(BUTTON_POSITIVE, context.getText(R.string.date_time_set),
161 setButton(BUTTON_NEGATIVE, context.getText(android.R.string.cancel),
  /packages/apps/Settings/src/com/android/settings/bluetooth/
Utils.java 76 dialog.setButton(DialogInterface.BUTTON_POSITIVE,

Completed in 1891 milliseconds

1 2 3