Searched defs:mLastDownEventY (Results 1 - 1 of 1) sorted by path

/frameworks/base/core/java/android/widget/
H A DNumberPicker.java375 private float mLastDownEventY; field in class:NumberPicker
860 mLastDownOrMoveEventY = mLastDownEventY = event.getY();
865 if (mLastDownEventY < mTopSelectionDividerTop) {
870 } else if (mLastDownEventY > mBottomSelectionDividerBottom) {
885 } else if (mLastDownEventY < mTopSelectionDividerTop) {
889 } else if (mLastDownEventY > mBottomSelectionDividerBottom) {
920 int deltaDownY = (int) Math.abs(currentMoveY - mLastDownEventY);
944 int deltaMoveY = (int) Math.abs(eventY - mLastDownEventY);

Completed in 43 milliseconds