Searched defs:isInTouchMode (Results 1 - 8 of 8) 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.java323 static boolean isInTouchMode() { method in class:ViewRoot
H A DView.java511 * {@link #isInTouchMode} to see whether the device is currently in touch mode.
3596 isInTouchMode() && !isFocusableInTouchMode()) {
3710 if (isInTouchMode() &&
3731 * @see #isInTouchMode()
3736 if (isInTouchMode()) {
4152 public boolean isInTouchMode() { method in class:View
4156 return ViewRoot.isInTouchMode();
/frameworks/base/core/java/android/widget/
H A DTabHost.java181 public void onTouchModeChanged(boolean isInTouchMode) { argument
182 if (!isInTouchMode) {
H A DAutoCompleteTextView.java1525 * When this boolean is true, isInTouchMode() returns true, otherwise it
1526 * returns super.isInTouchMode().
1558 public boolean isInTouchMode() { method in class:AutoCompleteTextView.DropDownListView
1560 return mListSelectionHidden || super.isInTouchMode();
H A DAbsListView.java1094 if (gainFocus && mSelectedPosition < 0 && !isInTouchMode()) {
1527 return (hasFocus() && !isInTouchMode()) || touchModeDrawsInPressedState();
1719 final int touchMode = isInTouchMode() ? TOUCH_MODE_ON : TOUCH_MODE_OFF;
2067 public void onTouchModeChanged(boolean isInTouchMode) { argument
2068 if (isInTouchMode) {
3328 final boolean inTouchMode = isInTouchMode();
3644 if (isInTouchMode()) {
3690 if (!isInTouchMode()) {
H A DTextView.java8057 public void onTouchModeChanged(boolean isInTouchMode) { argument
8058 if (!isInTouchMode) {
8244 public void onTouchModeChanged(boolean isInTouchMode) { argument
8245 if (!isInTouchMode) {

Completed in 397 milliseconds