Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DNavigationBarViewTaskSwitchHelper.java35 private final int mMinFlingVelocity; field in NavigationBarViewTaskSwitchHelper
43 mMinFlingVelocity = configuration.getScaledMinimumFlingVelocity(); in NavigationBarViewTaskSwitchHelper()
96 boolean isValidFling = absVelX > mMinFlingVelocity && in onFling()
DKeyguardAffordanceHelper.java57 private int mMinFlingVelocity; field in KeyguardAffordanceHelper
98 mMinFlingVelocity = configuration.getScaledMinimumFlingVelocity(); in initDimens()
325 snapBack |= Math.abs(vel) > mMinFlingVelocity && velIsInWrongDirection; in flingWithCurrentVelocity()
/frameworks/base/core/java/com/android/internal/widget/
DSwipeDismissLayout.java64 private int mMinFlingVelocity; field in SwipeDismissLayout
124 mMinFlingVelocity = vc.getScaledMinimumFlingVelocity(); in init()
323 mVelocityTracker.getXVelocity() < -mMinFlingVelocity) {
DResolverDrawerLayout.java79 private final float mMinFlingVelocity; field in ResolverDrawerLayout
130 mMinFlingVelocity = vc.getScaledMinimumFlingVelocity(); in ResolverDrawerLayout()
300 if (Math.abs(yvel) > mMinFlingVelocity) { in onTouchEvent()
577 if (velocityY > mMinFlingVelocity && mCollapseOffset != 0) {
586 if (!consumed && Math.abs(velocityY) > mMinFlingVelocity) {
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
DSwitchCompat.java104 private int mMinFlingVelocity; field in SwitchCompat
225 mMinFlingVelocity = config.getScaledMinimumFlingVelocity(); in SwitchCompat()
734 if (Math.abs(xvel) > mMinFlingVelocity) { in stopDrag()
/frameworks/base/core/java/android/widget/
DSwitch.java116 private int mMinFlingVelocity; field in Switch
286 mMinFlingVelocity = config.getScaledMinimumFlingVelocity(); in Switch()
1018 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.java357 private final int mMinFlingVelocity; field in RecyclerView
421 mMinFlingVelocity = vc.getScaledMinimumFlingVelocity(); in RecyclerView()
1713 if (!canScrollHorizontal || Math.abs(velocityX) < mMinFlingVelocity) { in fling()
1716 if (!canScrollVertical || Math.abs(velocityY) < mMinFlingVelocity) { in fling()
1763 return mMinFlingVelocity; in getMinFlingVelocity()