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
Try this code, I get working fine.
webSettings.setSupportZoom(true); webSettings.setBuiltInZoomControls(true); webSettings.setDisplayZoomControls(false);