2

我需要从以下文件中获取正文。当我使用Html.fromHtml(string)时,我得到了body + some unformatted dataas

P {
    MARGIN-TOP: 0px;
    MARGIN-BOTTOM: 0px 
}

<P/>标签不适用于Html.fromHtml(string ). 为什么?

4

2 回答 2

3

只需转换两次给定示例希望对您有所帮助

String des=Html.fromHtml(item.getVoucher_Description()).toString();
txtdes.setText(Html.fromHtml(des));
于 2015-10-24T11:59:48.947 回答
2

这里 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>

来源从这里

于 2012-11-12T08:10:48.190 回答