0

我想在 android 中不使用 webview 来显示 html 内容。

内容是 html 解析器的结果。

但现在,我不知道该怎么做。有什么线索或例子吗?

我想我需要一些示例代码来研究它。

非常感谢您。

4

1 回答 1

0

你必须使用Html.fromHtml()

例子 :

myTextView.setText(Html.fromHtml("<h2>Title</h2><br><p>Description here</p>"));

最好的例子在这里

于 2013-06-08T05:15:04.840 回答