Skip to content

Instantly share code, notes, and snippets.

@ixiyang
Created August 1, 2014 00:57
Show Gist options
  • Save ixiyang/8d2c00762492a1a82214 to your computer and use it in GitHub Desktop.
Save ixiyang/8d2c00762492a1a82214 to your computer and use it in GitHub Desktop.
disable webview zoom
WebSettings settings = webView.getSettings();
settings.setJavaScriptEnabled(true);
settings.setLoadsImagesAutomatically(true);
settings.setBuiltInZoomControls(false);
if (Build.VERSION.SDK_INT>=Build.VERSION_CODES.KITKAT) {
settings.setUseWideViewPort(true);
}else {
settings.setUseWideViewPort(false);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment