我正在尝试使用 Web 视图来使用图像的捏合和缩放,就像在画廊中一样。
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" />
现在,如果我想引用 res\drawable-hdpi 文件夹中的图片大象.jpg。我怎样才能在活动中做到这一点?