如何在Android中使用自定义标记处理程序处理背景颜色标记?

时间:2015-07-13 06:59:32

标签: android html spannablestring

我正在使用Html.fromHtml()TextView中加载HTML格式的字符串。但似乎这种方法无法处理

<span style="background-color=#f00">This is highlighted text.</span>

如何在TextView中加载此类代码?

1 个答案:

答案 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)。