如何在android中的webview中显示本地图像

时间:2011-10-31 16:06:08

标签: android webview local drawable

我只是想在Android的webview中显示带有一些文本和其他内容的本地图像。

即我有webview s.t。

 WebView mWebView = (WebView) otherappView.findViewById(R.id.webView1);
 String summary =readRawTextFile(context, R.raw.abc);
 mWebView.loadData(summary, "text/html", null);

并在abc.html文件中我应该为图像的src标签写什么(???? part)

 <img width="48" height="48" src="??????" class="attachment-48x48 wp-post-image" alt="" title="analogklasik48" />

P.S。该项目是一个图书馆项目,所以我不想使用资产文件夹

P.S。 file:///android_res/drawable/image.png无法正常工作

1 个答案:

答案 0 :(得分:2)

如果你想从drawable文件夹中放一个图像,你应该将它转换为base64然后放入你的html字符串:

Bitmap bitmap = BitmapFactory.decodeResource(getResources(), R.drawable.my_drawable);
ByteArrayOutputStream baos = new ByteArrayOutputStream();
bitmap.compress(Bitmap.CompressFormat.JPEG, 100, baos);
String base64Image = Base64.encodeToString(baos.toByteArray(), Base64.DEFAULT);
String imgHtml = "<img src=\"data:image/jpg;base64," + base64Image + "\"/>";