Searched defs:button (Results 1 - 11 of 11) sorted by relevance

/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/colorpicker/
H A DColorPickerDialog.java108 private void setButtonColor(ToggleButton button, float[] hsv) { argument
109 if (button == null) {
113 button.setBackgroundColor(color);
119 button.setTextColor(Color.HSVToColor(fg));
120 button.setTag(hsv);
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
H A DSelectionMenu.java35 public SelectionMenu(Context context, Button button, OnPopupItemClickListener listener) { argument
37 mButton = button;
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
H A DButtonSwitcher.java144 private ViewPropertyAnimator animateButton(final View button, final int direction) { argument
146 final float innerX = button.getX() - button.getTranslationX();
148 button.setClickable(true);
149 return button.animate().translationX(0);
151 button.setClickable(false);
152 return button.animate().translationX(outerX - innerX);
/packages/apps/Settings/src/com/android/settings/
H A DCredentialStorage.java249 @Override public void onClick(DialogInterface dialog, int button) { argument
250 mResetConfirmed = (button == DialogInterface.BUTTON_POSITIVE);
319 @Override public void onClick(DialogInterface dialog, int button) { argument
320 mConfigureConfirmed = (button == DialogInterface.BUTTON_POSITIVE);
427 @Override public void onClick(DialogInterface dialog, int button) { argument
428 mUnlockConfirmed = (button == DialogInterface.BUTTON_POSITIVE);
H A DTetherSettings.java566 public void onClick(DialogInterface dialogInterface, int button) { argument
567 if (button == DialogInterface.BUTTON_POSITIVE) {
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/editors/
H A DEditor.java259 protected void createMenu(int[] strId, View button) { argument
260 PopupMenu pmenu = new PopupMenu(mContext, button);
/packages/apps/Settings/src/com/android/settings/vpn2/
H A DVpnSettings.java236 public void onClick(DialogInterface dialog, int button) { argument
237 if (button == DialogInterface.BUTTON_POSITIVE) {
/packages/apps/SoundRecorder/src/com/android/soundrecorder/
H A DSoundRecorder.java368 public void onClick(View button) { argument
369 if (!button.isEnabled())
372 switch (button.getId()) {
/packages/apps/Settings/src/com/android/settings/wifi/
H A DWifiSettings.java119 // Activity result when pressing the Skip button
150 // this boolean extra specifies whether to disable the Next button when not connected
156 // this boolean extra shows a custom button that we can control
165 // should Next button only be enabled when we have a connection?
355 // Hide the next button
370 // if we're supposed to enable/disable the Next button based on our current connection
967 * Renames/replaces "Next" button when appropriate. "Next" button usually exists in
979 public void onClick(DialogInterface dialogInterface, int button) { argument
980 if (button
[all...]
/packages/apps/Settings/src/com/android/settings/applications/
H A DInstalledAppDetails.java317 private boolean handleDisableable(Button button) { argument
330 // Disable button for core system applications.
331 button.setText(R.string.disable_text);
333 button.setText(R.string.disable_text);
336 button.setText(R.string.enable_text);
372 // We do this here so the text of the button is still set correctly.
448 // Get Control button panel
455 // Get More Control button panel
883 // Disable clear activities button
992 // Refresh the button attribute
[all...]
/packages/apps/Launcher2/src/com/android/launcher2/
H A DLauncher.java1971 // Back button is a no-op here, but give at least some feedback for the button press
2038 * Event handler for the search button
2049 * Event handler for the voice button
2074 * Event handler for the "grid" button that appears on the home screen, which
2861 // Set focus to the AppsCustomize button
3063 // if successful in getting icon, return it; otherwise, set button to use default drawable
3072 TextView button = (TextView) findViewById(buttonId);
3077 if (button != null) {
3078 button
3121 invalidatePressedFocusedStates(View container, View button) argument
[all...]

Completed in 247 milliseconds