Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在 android 中不使用 webview 来显示 html 内容。
内容是 html 解析器的结果。
但现在,我不知道该怎么做。有什么线索或例子吗?
我想我需要一些示例代码来研究它。
非常感谢您。
你必须使用Html.fromHtml()
Html.fromHtml()
例子 :
myTextView.setText(Html.fromHtml("<h2>Title</h2><br><p>Description here</p>"));
最好的例子在这里。