我正在转换 html 字符串,Html.fromHtml(sBody)
以将其添加到 edittext 。我需要 editext ,所以我不能使用 webview 来加载数据。
et.setText(Html.fromHtml(sBody));
我看到的是转换后的文本在开头添加了一些字体细节。样本数据是:
!-- /* Font Definitions */ @font-face {font-family:"Cambria Math"; panose-1:2 4 5 3 5 4 6 3 2 4;} @font-face {font-family:Calibri; panose-1:2 15 5 2 2 2 4 3 2 4;} @font-face
我怎样才能删除这个。
请帮忙