Searched defs:isInTouchMode (Results 1 - 9 of 9) 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/view/
H A DViewTreeObserver.java121 * @param isInTouchMode True if the view hierarchy is now in touch mode, false otherwise.
123 public void onTouchModeChanged(boolean isInTouchMode); argument
H A DViewRootImpl.java469 static boolean isInTouchMode() { method in class:ViewRootImpl
H A DView.java520 * {@link #isInTouchMode} to see whether the device is currently in touch mode.
6190 && isInTouchMode() && !isFocusableInTouchMode()) {
6468 if (isInTouchMode() &&
6489 * @see #isInTouchMode()
6494 if (isInTouchMode()) {
7556 public boolean isInTouchMode() { method in class:View
7560 return ViewRootImpl.isInTouchMode();
/frameworks/base/core/java/android/widget/
H A DTabHost.java200 public void onTouchModeChanged(boolean isInTouchMode) { argument
201 if (!isInTouchMode) {
H A DListPopupWindow.java599 if (!mModal || mDropDownList.isInTouchMode()) {
1157 * When this boolean is true, isInTouchMode() returns true, otherwise it
1158 * returns super.isInTouchMode().
1198 public boolean isInTouchMode() { method in class:ListPopupWindow.DropDownListView
1200 return (mHijackFocus && mListSelectionHidden) || super.isInTouchMode();
H A DEditor.java3421 public void onTouchModeChanged(boolean isInTouchMode) { argument
3422 if (!isInTouchMode) {
3608 public void onTouchModeChanged(boolean isInTouchMode) { argument
3609 if (!isInTouchMode) {
H A DAbsListView.java1917 if (gainFocus && mSelectedPosition < 0 && !isInTouchMode()) {
2509 return (hasFocus() && !isInTouchMode()) || touchModeDrawsInPressedState();
2759 final int touchMode = isInTouchMode() ? TOUCH_MODE_ON : TOUCH_MODE_OFF;
3313 public void onTouchModeChanged(boolean isInTouchMode) { argument
3314 if (isInTouchMode) {
4969 final boolean inTouchMode = isInTouchMode();
5375 if (isInTouchMode()) {
5421 if (!isInTouchMode()) {

Completed in 221 milliseconds