How to disable zoom effect in webview….i am trying below code but its not working for me
mWeb = (WebView) findViewById(R.id.web);
mWeb.setBackgroundColor(Color.parseColor("#1d1d1d"));
WebSettings mWebSetting=mWeb.getSettings();
mWebSetting.setBuiltInZoomControls(false);
setBuiltInZoomControls it won’t disable multitouch zooming but this does.