How to enable zoom controls and pinch zoom in a WebView?
Use these:
webview.getSettings().setBuiltInZoomControls(true);
webview.getSettings().setDisplayZoomControls(false);
Strange. Inside OnCreate method, I'm using
webView.getSettings().setBuiltInZoomControls(true);
And it's working fine here. Anything particular in your webview ?