我需要从以下文件中获取正文。当我使用Html.fromHtml(string)
时,我得到了body + some unformatted data
as
P {
MARGIN-TOP: 0px;
MARGIN-BOTTOM: 0px
}
<P/>
标签不适用于Html.fromHtml(string )
. 为什么?
只需转换两次给定示例希望对您有所帮助
String des=Html.fromHtml(item.getVoucher_Description()).toString();
txtdes.setText(Html.fromHtml(des));
这里 commonsware 说支持 P 标签。HTML.fromHtml() 支持的标签 - 博客
例如,您应该在这样的字符串中使用它
<string name="htmlFormattedText">
<![CDATA[
<p>Text with markup for <strong>bold</strong>
and <em>italic</em> text.</p>
<p>There is also support for a
<tt>teletype-style</tt> font.
But no use for the <code>code</code>
tag!</p>
]]></string>
来源从这里