HomeSort by relevance Sort by last modified time
    Searched refs:initialVelocity (Results 1 - 4 of 4) sorted by null

  /frameworks/base/core/java/android/widget/
Gallery.java     [all...]
HorizontalScrollView.java 523 int initialVelocity = (int) velocityTracker.getXVelocity(mActivePointerId);
525 if (getChildCount() > 0 && Math.abs(initialVelocity) > mMinimumVelocity) {
526 fling(-initialVelocity);
    [all...]
ScrollView.java 520 int initialVelocity = (int) velocityTracker.getYVelocity(mActivePointerId);
522 if (getChildCount() > 0 && Math.abs(initialVelocity) > mMinimumVelocity) {
523 fling(-initialVelocity);
    [all...]
AbsListView.java     [all...]

Completed in 136 milliseconds