0
我正在使用Html.fromHtml()
在TextView
中加載HTML格式的字符串。但似乎這種方法無法處理如何使用Android中的自定義標記處理程序處理背景顏色標記?
<span style="background-color=#f00">This is highlighted text.</span>
如何在TextView
中加載此類標籤?
我正在使用Html.fromHtml()
在TextView
中加載HTML格式的字符串。但似乎這種方法無法處理如何使用Android中的自定義標記處理程序處理背景顏色標記?
<span style="background-color=#f00">This is highlighted text.</span>
如何在TextView
中加載此類標籤?
您無法將這種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顏色)。