gpt4 book ai didi

Android,将 WebView 与 loadData 一起使用

转载 作者:行者123 更新时间:2023-11-29 02:11:27 25 4
gpt4 key购买 nike

我正在尝试像这样使用 WebView:

    String html = " <html><body> 
<table style\"background-color: #0a82a4; color: #ffffff;\">
... stuff ...
</table>"
</body>
</head>";

html.replace("#", "%23");
html.replace("\\", "%27");
html.replace("?", "%3f");
html.replace("%", "%25");

myWebview.loadData(html, "text/html", "utf-8");

它可以工作,但是当在样式标签中添加 width=100% 时,webView 无法加载数据。

我使用了这个引用:http://developer.android.com/reference/android/webkit/WebView.html#loadData(java.lang.String, java.lang.String, java.lang.String)

哈哈,解决了:

html = html.replace("%", "%25");
html = html.replace("#", "%23");
html = html.replace("\\", "%27");
html = html.replace("?", "%3f");

最佳答案

您是否看过位于 here 的开发指南中的 HelloWorld 示例?

关于Android,将 WebView 与 loadData 一起使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7125976/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com