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

/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/view/
H A DViewTreeObserver.java97 * @param isInTouchMode True if the view hierarchy is now in touch mode, false otherwise.
99 public void onTouchModeChanged(boolean isInTouchMode); argument
H A DViewRoot.java312 static boolean isInTouchMode() { method in class:ViewRoot
H A DView.java511 * {@link #isInTouchMode} to see whether the device is currently in touch mode.
3481 isInTouchMode() && !isFocusableInTouchMode()) {
3595 if (isInTouchMode() &&
3616 * @see #isInTouchMode()
3621 if (isInTouchMode()) {
4016 public boolean isInTouchMode() { method in class:View
4020 return ViewRoot.isInTouchMode();
/frameworks/base/core/java/android/widget/
H A DTabHost.java178 public void onTouchModeChanged(boolean isInTouchMode) { argument
179 if (!isInTouchMode) {
H A DAutoCompleteTextView.java1522 * When this boolean is true, isInTouchMode() returns true, otherwise it
1523 * returns super.isInTouchMode().
1555 public boolean isInTouchMode() { method in class:AutoCompleteTextView.DropDownListView
1557 return mListSelectionHidden || super.isInTouchMode();
H A DAbsListView.java985 if (gainFocus && mSelectedPosition < 0 && !isInTouchMode()) {
1412 return (hasFocus() && !isInTouchMode()) || touchModeDrawsInPressedState();
1604 final int touchMode = isInTouchMode() ? TOUCH_MODE_ON : TOUCH_MODE_OFF;
1950 public void onTouchModeChanged(boolean isInTouchMode) { argument
1951 if (isInTouchMode) {
2873 final boolean inTouchMode = isInTouchMode();
3189 if (isInTouchMode()) {
3235 if (!isInTouchMode()) {

Completed in 157 milliseconds