我正在使用Html.fromHtml()
在TextView
中加载HTML格式的字符串。但似乎这种方法无法处理
<span style="background-color=#f00">This is highlighted text.</span>
如何在TextView
中加载此类代码?
答案 0 :(得分:0)
您无法将这种html标记加载到TextView中。这些是TextView支持的标签(不确定是否完整)。
<a href="...">
<b>
<big>
<blockquote>
<br>
<cite>
<dfn>
<div align="...">
<em>
<font size="..." color="..." face="...">
<h1>
<h2>
<h3>
<h4>
<h5>
<h6>
<i>
<img src="...">
<p>
<small>
<strike>
<strong>
<sub>
<sup>
<tt>
<u>
要实现标记指定的样式,请使用TextView.setBackgroundColor(int color)。