4

我正在尝试使用带有 loadData 的 webview 来显示图像:

        String data = "<html><head><title>Photo</title></head>";
        data = data + "<body><center><img width=\"100%\" src=\"" + imageUrl + "\" /></center></body></html>";

        imageWebView.getSettings().setLoadWithOverviewMode(true);
        imageWebView.getSettings().setUseWideViewPort(true);
        imageWebView.getSettings().setBuiltInZoomControls(true);
        imageWebView.setScrollBarStyle(WebView.SCROLLBARS_OUTSIDE_OVERLAY);
        imageWebView.setScrollbarFadingEnabled(false);
        imageWebView.loadData(data, "text/html", "UTF-8");
        imageWebView.setBackgroundColor(0x00000000);

在 4.1 模拟器中,这可以正常工作,我可以看到图像。在 2.3 中,它只显示编码的 html 代码。

4

1 回答 1

5

这似乎是由WebView 中的一个已知错误引起的,如果您在提供的数据中有任何百分比,则数据将被解释为 URL。

正如错误报告中提到的,一个已知的解决方法是%&#37;.

在类似的 SO 帖子中建议了另一种似乎效果很好的解决方法,并且还应涵盖可能导致相同问题的任何其他字符:

mWebView.loadData(URLEncoder.encode(data,"utf-8").replaceAll("\\+"," "), "text/html", "utf-8");
于 2013-01-21T15:14:57.547 回答