ignore pointer up and down if zooming isnt enabled

This commit is contained in:
tibbi 2022-03-09 15:46:34 +01:00
parent 61588de69a
commit 056b39e923

View File

@ -182,14 +182,18 @@ class MyCanvas(context: Context, attrs: AttributeSet) : View(context, attrs) {
mWasMovingCanvasInGesture = false mWasMovingCanvasInGesture = false
} }
MotionEvent.ACTION_POINTER_DOWN -> { MotionEvent.ACTION_POINTER_DOWN -> {
if (mAllowMovingZooming) {
mWasMultitouch = true mWasMultitouch = true
mTouchSloppedBeforeMultitouch = mLastMotionEvent.isTouchSlop(pointerIndex, mStartX, mStartY) mTouchSloppedBeforeMultitouch = mLastMotionEvent.isTouchSlop(pointerIndex, mStartX, mStartY)
} }
}
MotionEvent.ACTION_POINTER_UP -> { MotionEvent.ACTION_POINTER_UP -> {
if (mAllowMovingZooming) {
mIgnoreTouches = true mIgnoreTouches = true
actionUp(!mWasScalingInGesture && !mWasMovingCanvasInGesture) actionUp(!mWasScalingInGesture && !mWasMovingCanvasInGesture)
} }
} }
}
mLastMotionEvent = MotionEvent.obtain(event) mLastMotionEvent = MotionEvent.obtain(event)
invalidate() invalidate()