Android-在html webview中添加了图片,但图片未显示

时间:2019-07-04 03:30:04

标签: java android html

我的代码:

 web.loadData("<html><body> " + result.getHtmltext().replaceAll("<span class=\"stl_23 stl_10\" style=\"word-spacing:0em;\">-------------------------------</span>",
                        "<img height=\" 500\" width=\"500\" src=" + " \" " + "file:///android_asset/logo_transparent.png" + "\" " + "/>") + "</body></html>", "text/html; charset=UTF-8", null);

但是不起作用: enter image description here

1 个答案:

答案 0 :(得分:1)

您可以尝试一下

String htmlData = "<body>" + "<img src=\"logo_transparent.png\"/></body>";
webView.loadDataWithBaseURL("file:///android_asset/",htmlData , "text/html", "utf-8",null);

通过它,它将开始直接从资产文件夹中拾取图像。