Skip to content Skip to sidebar Skip to footer

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:


Post a Comment for "WebView SetDefaultZoom Deprecated"