This Answer is to zoom image and content made to load in webview
Copy an Image in Assets and create a file image.html in assets
the code will be some what like this
<html>
<table>
<tr>
<td>
<img src="droid.jpg" width="304" height="228" alt="Hello">
</td>
</tr>
</table>
</html>
and write the below code in java class
public class MainActivity extends Activity {
// declare a WebView object first
WebView mWebView = null;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
// load view
mWebView = (WebView)findViewById(R.id.webView);
// (*) this line make uses of the Zoom control
mWebView.getSettings().setBuiltInZoomControls(true);
// simply, just load an image
mWebView.loadUrl("file:///android_asset/image.html");
}
}
if you want some other option you can go to this link
good luck :)