The default Browser app for Android shows zoom controls when you\'re scrolling and also allows for pinch zooming. How can I enable this feature for my own Webview?
I
Check if you don't have a ScrollView wrapping your Webview.
In my case that was the problem. It seems ScrollView gets in the way of the pinch gesture.
To fix it, just take your Webview outside the ScrollView.