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
Inside OnCreate, add:
webview.getSettings().setSupportZoom(true);
webview.getSettings().setBuiltInZoomControls(true);
webview.getSettings().setDisplayZoomControls(false);
Inside the html document, add:
Inside javascript, omit:
//event.preventDefault ? event.preventDefault() : (event.returnValue = false);