WebView.loadDataWithBaseUrl 不显示图像

发布于 2024-12-11 02:30:52 字数 222 浏览 1 评论 0原文

我有一个从 ATOM Feed 解析的 HTML 数据字符串。显然,里面有对图像的引用,我想在 WebView 上显示它们。但使用

webview.loadDataWithBaseURL("", data,"text/html", "utf-8","");

仅显示文本,不显示图像。

我缺少什么?

先感谢您。

I have an HTML string of data that i parse from an ATOM Feed. Obviously there are references to images inside, that I'd like to show on a WebView. But using

webview.loadDataWithBaseURL("", data,"text/html", "utf-8","");

only the text is displayed and the images are not shown.

What I am missing?

Thank you in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

最终幸福 2024-12-18 02:30:52

您没有传递BASE URL,而是传递空字符串。正如您在文档中看到的 loadDataWithBaseURL() 期望您的 Html 数据Base URL 作为第一个参数。所以你应该有这样的东西:

  webview.loadDataWithBaseURL("www.mypage.html",data,"text/html","utf-8",null);

You are not passing the BASE URL, you are passing the emptry string. As you can see in the docs loadDataWithBaseURL() is expecting as the first parameter the Base URL of your Html Data. So what you should have is something like this :

  webview.loadDataWithBaseURL("www.mypage.html",data,"text/html","utf-8",null);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文