In some web browsers, huge images are automatically resized to fit the screen.
Is it possible to do the same in an Android WebView?
The web page just contain
If your WebView width is fill_parent then you can use this code:
WebView
fill_parent
Display display=getWindowManager().getDefaultDisplay(); int width=display.getWidth(); String data=""; webView.loadData(data, "text/html", "utf-8");
And zoom still working!
Same method if height is fill_parent.
height