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

/frameworks/base/core/java/android/widget/
H A DStackView.java90 private static final int GESTURE_SLIDE_DOWN = 2; field in class:StackView
653 final int swipeGestureType = deltaY < 0 ? GESTURE_SLIDE_UP : GESTURE_SLIDE_DOWN;
662 activeIndex = (swipeGestureType == GESTURE_SLIDE_DOWN) ? 0 : 1;
664 activeIndex = (swipeGestureType == GESTURE_SLIDE_DOWN) ? 1 : 0;
669 (mStackMode == ITEMS_SLIDE_DOWN && swipeGestureType == GESTURE_SLIDE_DOWN));
672 (mStackMode == ITEMS_SLIDE_UP && swipeGestureType == GESTURE_SLIDE_DOWN));
728 if (mSwipeGestureType == GESTURE_SLIDE_DOWN) {
765 int activeViewIndex = (mSwipeGestureType == GESTURE_SLIDE_DOWN) ? 0 : 1;
820 if (deltaY > mSwipeThreshold && mSwipeGestureType == GESTURE_SLIDE_DOWN
865 } else if (mSwipeGestureType == GESTURE_SLIDE_DOWN) {
[all...]

Completed in 26 milliseconds