提问人:Manikanta 提问时间:12/4/2020 最后编辑:ADMManikanta 更新时间:12/4/2020 访问量:73
Html.fromHtml() 无法解析以 < 开头的字符串
Html.fromHtml() fail to parse string that starts with <
问:
我正在我的 android 应用程序中用于呈现文本。但是当我作为字符串传递时,也会显示,返回空字符串。Html.fromHtml()
Html.fromHtml()
我可以想到像附加空格之类的技巧来处理这种情况,但我想知道处理字符串的标准方法,例如 with )。<hello>
Html.fromHtml(
我尝试阅读 android 文档,但没有遇到任何有用的线索。
答:
0赞
居然居
12/4/2020
#1
您可以像这样更改字符串。
<hello>
评论
0赞
Manikanta
12/5/2020
我试过了,解析器仍然被堵住了。解析器将左大括号“<”解释为某个自定义标记的开头,将 hello 解释为标记名称。
评论