Is it possible to load a URL in a WebView and resize it to fit the screen? I mean I want to make the WebPage small so that the user doesn\'t need to scroll. Is this possible
As mentioned, zooming out too much is not something the user would like cause it'll reduce the legibility of the content.
I would suggest trying to set the zoom controls, however, I don't know if it'll work in 2.1.
webview.getSettings().setBuiltInZoomControls(true);
Hope this solves the problem as you now are giving user the control to change the zoom level.