Home
last modified time | relevance | path

Searched refs:mMinFlingVelocity (Results 1 – 8 of 8) sorted by relevance

/frameworks/base/core/java/com/android/internal/widget/
DSwipeDismissLayout.java64 private int mMinFlingVelocity; field in SwipeDismissLayout
131 mMinFlingVelocity = vc.getScaledMinimumFlingVelocity(); in init()
330 mVelocityTracker.getXVelocity() < -mMinFlingVelocity) {
DResolverDrawerLayout.java90 private final float mMinFlingVelocity; field in ResolverDrawerLayout
145 mMinFlingVelocity = vc.getScaledMinimumFlingVelocity(); in ResolverDrawerLayout()
364 if (Math.abs(yvel) > mMinFlingVelocity) { in onTouchEvent()
649 if (velocityY > mMinFlingVelocity && mCollapseOffset != 0) {
658 if (!consumed && Math.abs(velocityY) > mMinFlingVelocity) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DNavigationBarGestureHelper.java72 private final int mMinFlingVelocity; field in NavigationBarGestureHelper
87 mMinFlingVelocity = configuration.getScaledMinimumFlingVelocity(); in NavigationBarGestureHelper()
283 boolean isValidFling = absVelX > mMinFlingVelocity && in onFling()
DKeyguardAffordanceHelper.java57 private int mMinFlingVelocity; field in KeyguardAffordanceHelper
97 mMinFlingVelocity = configuration.getScaledMinimumFlingVelocity(); in initDimens()
329 snapBack |= Math.abs(vel) > mMinFlingVelocity && velIsInWrongDirection; in flingWithCurrentVelocity()
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
DSwitchCompat.java124 private int mMinFlingVelocity; field in SwitchCompat
275 mMinFlingVelocity = config.getScaledMinimumFlingVelocity(); in SwitchCompat()
994 if (Math.abs(xvel) > mMinFlingVelocity) { in stopDrag()
/frameworks/base/core/java/android/widget/
DSwitch.java117 private int mMinFlingVelocity; field in Switch
287 mMinFlingVelocity = config.getScaledMinimumFlingVelocity(); in Switch()
1019 if (Math.abs(xvel) > mMinFlingVelocity) { in stopDrag()
/frameworks/base/docs/html/training/gestures/
Dviewgroup.jd187 private int mMinFlingVelocity = vc.getScaledMinimumFlingVelocity();
203 } if (mMinFlingVelocity <= velocityX && velocityX <= mMaxFlingVelocity
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
DRecyclerView.java388 private final int mMinFlingVelocity; field in RecyclerView
498 mMinFlingVelocity = vc.getScaledMinimumFlingVelocity(); in RecyclerView()
1879 if (!canScrollHorizontal || Math.abs(velocityX) < mMinFlingVelocity) { in fling()
1882 if (!canScrollVertical || Math.abs(velocityY) < mMinFlingVelocity) { in fling()
1929 return mMinFlingVelocity; in getMinFlingVelocity()