标签:
android所支持的富文本标签有
<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>
String s = "<font size=‘20‘ color=‘red‘><big>大小20</big><br> <small>颜色</small><b>红</b></font>";
CharSequence charSequence = Html.fromHtml(s);
tv1.setText(charSequence);
标签:
原文地址:http://www.cnblogs.com/cityking/p/a005.html