Searched defs:isInTouchMode (Results 1 - 10 of 10) sorted by relevance

/frameworks/base/tools/layoutlib/bridge/src/android/view/
H A DViewRootImpl_Delegate.java31 /*package*/ static boolean isInTouchMode() { method in class:ViewRootImpl_Delegate
/frameworks/base/core/tests/coretests/src/android/widget/layout/linear/
H A DLLOfButtons1.java62 public boolean isInTouchMode() { method in class:LLOfButtons1
63 return mFirstButton.isInTouchMode();
/frameworks/base/core/java/android/widget/
H A DDropDownListView.java61 * When this boolean is true, isInTouchMode() returns true, otherwise it
62 * returns super.isInTouchMode().
315 public boolean isInTouchMode() { method in class:DropDownListView
317 return (mHijackFocus && mListSelectionHidden) || super.isInTouchMode();
H A DTabHost.java192 public void onTouchModeChanged(boolean isInTouchMode) { argument
H A DAbsListView.java1982 if (gainFocus && mSelectedPosition < 0 && !isInTouchMode()) {
2749 return (isFocused() && !isInTouchMode()) || (touchModeDrawsInPressedState() && isPressed());
3005 final int touchMode = isInTouchMode() ? TOUCH_MODE_ON : TOUCH_MODE_OFF;
3732 public void onTouchModeChanged(boolean isInTouchMode) { argument
3733 if (isInTouchMode) {
5125 final boolean inTouchMode = isInTouchMode();
5539 if (isInTouchMode()) {
5585 if (!isInTouchMode()) {
7128 if (!isInTouchMode()) {
H A DEditor.java5062 public void onTouchModeChanged(boolean isInTouchMode) { argument
5063 if (!isInTouchMode) {
5487 public void onTouchModeChanged(boolean isInTouchMode) { argument
5488 if (!isInTouchMode) {
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DDropDownListView.java61 * When this boolean is true, isInTouchMode() returns true, otherwise it
62 * returns super.isInTouchMode().
243 public boolean isInTouchMode() { method in class:DropDownListView
245 return (mHijackFocus && mListSelectionHidden) || super.isInTouchMode();
/frameworks/base/core/java/android/view/
H A DViewTreeObserver.java166 * @param isInTouchMode True if the view hierarchy is now in touch mode, false otherwise.
168 public void onTouchModeChanged(boolean isInTouchMode); argument
H A DViewRootImpl.java505 static boolean isInTouchMode() { method in class:ViewRootImpl
H A DView.java560 * {@link #isInTouchMode} to see whether the device is currently in touch mode.
8824 addFocusables(views, direction, isInTouchMode() ? FOCUSABLES_TOUCH_MODE : FOCUSABLES_ALL);
9120 if (isInTouchMode() &&
9141 * @see #isInTouchMode()
9146 if (isInTouchMode()) {
10553 public boolean isInTouchMode() { method in class:View
10557 return ViewRootImpl.isInTouchMode();
23869 stream.addProperty("misc:touchMode", isInTouchMode());

Completed in 335 milliseconds