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

/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DRecyclerView.java417 private final int mMaxFlingVelocity; field in class:RecyclerView
537 mMaxFlingVelocity = vc.getScaledMaximumFlingVelocity();
1987 velocityX = Math.max(-mMaxFlingVelocity, Math.min(velocityX, mMaxFlingVelocity));
1988 velocityY = Math.max(-mMaxFlingVelocity, Math.min(velocityY, mMaxFlingVelocity));
2031 return mMaxFlingVelocity;
2781 mVelocityTracker.computeCurrentVelocity(1000, mMaxFlingVelocity);

Completed in 58 milliseconds