I am trying to use the Web view to use the pinch and zoom of an image like in a gallery.
String imageUrl = "file:///local/dir/image.jpg"; // http://example.com/image.jpg
WebView wv = (WebView) findViewById(R.id.yourwebview);
wv.getSettings().setBuiltInZoomControls(true);
wv.loadUrl(imageUrl);
XML
<WebView android:id="@+id/yourwebview"
android:layout_width="fill_parent"
android:layout_height="fill_parent" />
Now if i want to reference an image elephant.jpg in the res\drawable-hdpi folder. How can i do it in the Activity ?