2015-07-13 37 views

回答

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顏色)。

相關問題