Searched defs:pressed (Results 1 - 12 of 12) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/tablet/
H A DNotificationPanelTitle.java55 public void setPressed(boolean pressed) { argument
56 super.setPressed(pressed);
59 button.setPressed(pressed);
/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DIconUtilities.java179 private Bitmap createSelectedBitmap(Bitmap src, boolean pressed) { argument
190 pressed ? mGlowColorPressedPaint : mGlowColorFocusedPaint);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DKeyButtonView.java178 public void setPressed(boolean pressed) { argument
180 if (pressed != isPressed()) {
185 if (pressed) {
207 super.setPressed(pressed);
/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
H A DKeyguardCircleFramedDrawable.java149 public void setPressed(boolean pressed) { argument
150 mPressed = pressed;
H A DKeyguardMultiUserAvatar.java227 public void setPressed(boolean pressed) { argument
228 if (mPressLock && !pressed) {
232 if (mPressLock || !pressed || isClickable()) {
233 super.setPressed(pressed);
234 mFramed.setPressed(pressed);
239 public void lockPressed(boolean pressed) { argument
240 mPressLock = pressed;
241 setPressed(pressed);
/frameworks/base/core/java/android/text/method/
H A DMetaKeyKeyListener.java55 * keyboard already reported as being pressed in {@link KeyEvent#getMetaState()}.
151 * @param text the buffer in which the meta key would have been pressed.
153 * @return an integer in which each bit set to one represents a pressed
167 * @param text the buffer in which the meta key would have been pressed.
395 * @return an integer in which each bit set to one represents a pressed
502 long locked, long pressed, long released, long used) {
503 if ((state & pressed) != 0) {
512 state |= what | pressed;
540 long pressed, long released, long used, KeyEvent event) {
545 } else if ((state & pressed) !
501 press(long state, int what, long mask, long locked, long pressed, long released, long used) argument
539 release(long state, int what, long mask, long pressed, long released, long used, KeyEvent event) argument
[all...]
/frameworks/base/core/java/android/inputmethodservice/
H A DKeyboard.java256 /** The current pressed state of this key */
257 public boolean pressed; field in class:Keyboard.Key
260 /** Text to output when pressed. This can be multiple characters, like ".com" */
395 * Informs the key that it has been pressed, in case it needs to change its appearance or
400 pressed = !pressed;
404 * Changes the pressed state of the key. If it is a sticky key, it will also change the
410 pressed = !pressed;
482 if (pressed) {
[all...]
/frameworks/base/core/java/android/widget/
H A DGallery.java1137 protected void dispatchSetPressed(boolean pressed) { argument
1139 // Show the pressed state on the selected child
1141 mSelectedChild.setPressed(pressed);
H A DAbsListView.java2407 * @return True if the current touch mode requires that we draw the selector in the pressed
2424 * the pressed state for an item.
2491 * Sets the selector state to "pressed" and posts a CheckForKeyLongPress to see if
2941 protected void dispatchSetPressed(boolean pressed) { argument
/frameworks/ex/chips/src/com/android/ex/chips/
H A DRecipientEditTextView.java666 private DrawableRecipientChip constructChipSpan(RecipientEntry contact, boolean pressed, argument
678 if (pressed) {
1102 * Dismiss any selected chips when the back key is pressed.
1614 private CharSequence createChip(RecipientEntry entry, boolean pressed) { argument
1625 DrawableRecipientChip chip = constructChipSpan(entry, pressed,
/frameworks/base/core/java/android/view/
H A DViewGroup.java3159 protected void dispatchSetPressed(boolean pressed) { argument
3165 // show a pressed state when their parent view does.
3166 // Clearing a pressed state always propagates.
3167 if (!pressed || (!child.isClickable() && !child.isLongClickable())) {
3168 child.setPressed(pressed);
5659 * Return true if the pressed state should be delayed for children or descendants of this
5661 * This prevents the pressed state from appearing when the user is actually trying to scroll
H A DView.java1119 * Indicates the view is pressed. States are used with
1224 * Indicates the view is pressed and its window has the focus.
1231 * Indicates the view is pressed and selected.
1238 * Indicates the view is pressed, selected and its window has the focus.
1246 * Indicates the view is pressed and focused.
1253 * Indicates the view is pressed, focused and its window has the focus.
1261 * Indicates the view is pressed, focused and selected.
1269 * Indicates the view is pressed, focused, selected and its window has the focus.
1278 * Indicates the view is pressed and enabled.
1285 * Indicates the view is pressed, enable
6222 setPressed(boolean pressed) argument
6244 dispatchSetPressed(boolean pressed) argument
[all...]

Completed in 982 milliseconds