Skip to content Skip to sidebar Skip to footer

Disable Double Tap Zoom/unzoom On A Webview

On Android, I'm am using a webview to display a chart designed by the API flot. I'm using this code: super.onCreate(savedInstanceState); this.requestWindowFeature(Window.FE

Solution 1:

try to set

webView.getSettings().setUseWideViewPort(false);

and deal with scale manually to fit the width..

Post a Comment for "Disable Double Tap Zoom/unzoom On A Webview"