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 DTabHost.java211 public void onTouchModeChanged(boolean isInTouchMode) { argument
212 if (!isInTouchMode) {
H A DListPopupWindow.java643 if (!mModal || mDropDownList.isInTouchMode()) {
1515 * When this boolean is true, isInTouchMode() returns true, otherwise it
1516 * returns super.isInTouchMode().
1716 public boolean isInTouchMode() { method in class:ListPopupWindow.DropDownListView
1718 return (mHijackFocus && mListSelectionHidden) || super.isInTouchMode();
H A DAbsListView.java1963 if (gainFocus && mSelectedPosition < 0 && !isInTouchMode()) {
2675 return (isFocused() && !isInTouchMode()) || (touchModeDrawsInPressedState() && isPressed());
2927 final int touchMode = isInTouchMode() ? TOUCH_MODE_ON : TOUCH_MODE_OFF;
3555 public void onTouchModeChanged(boolean isInTouchMode) { argument
3556 if (isInTouchMode) {
4914 final boolean inTouchMode = isInTouchMode();
5327 if (isInTouchMode()) {
5373 if (!isInTouchMode()) {
6852 if (!isInTouchMode()) {
H A DEditor.java3789 public void onTouchModeChanged(boolean isInTouchMode) { argument
3790 if (!isInTouchMode) {
3976 public void onTouchModeChanged(boolean isInTouchMode) { argument
3977 if (!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.java430 static boolean isInTouchMode() { method in class:ViewRootImpl
H A DView.java545 * {@link #isInTouchMode} to see whether the device is currently in touch mode.
7417 && isInTouchMode() && !isFocusableInTouchMode()) {
7668 if (isInTouchMode() &&
7689 * @see #isInTouchMode()
7694 if (isInTouchMode()) {
8919 public boolean isInTouchMode() { method in class:View
8923 return ViewRootImpl.isInTouchMode();
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DListPopupWindow.java658 if (!mModal || mDropDownList.isInTouchMode()) {
1523 * When this boolean is true, isInTouchMode() returns true, otherwise it
1524 * returns super.isInTouchMode().
1664 public boolean isInTouchMode() { method in class:ListPopupWindow.DropDownListView
1666 return (mHijackFocus && mListSelectionHidden) || super.isInTouchMode();

Completed in 851 milliseconds