WebView SetDefaultZoom Deprecated
Here is the code for setting the default zoom in webview mWebView.getSettings().setDefaultZoom(WebSettings.ZoomDensity.FAR); to be working but old. The setDefaultZoomvalue is dep
Solution 1:
webView.setInitialScale(1);
webView.getSettings().setLoadWithOverviewMode(true);
webView.getSettings().setUseWideViewPort(true);
This help you to remove setDefaultZoom(WebSettings.ZoomDensity.FAR).
Solution 2:
It's not supported at all anymore. http://developer.android.com/reference/android/webkit/WebSettings.html#setDefaultZoom(android.webkit.WebSettings.ZoomDensity)
Post a Comment for "WebView SetDefaultZoom Deprecated"