When I zoom a WebView by pinching, zooming will suddenly be canceled.
It seems that onTouchEvent does not handle MotionEvent.ACTION_POINTER_UP.
I added case MotionEvent.ACTION_POINTER_UP at L109 (or changed L108 - L110 to default:),
and it works fine.
Could you confirm this?
When I zoom a
WebView
by pinching, zooming will suddenly be canceled. It seems thatonTouchEvent
does not handleMotionEvent.ACTION_POINTER_UP
. I addedcase MotionEvent.ACTION_POINTER_UP
at L109 (or changed L108 - L110 todefault:
), and it works fine. Could you confirm this?