Android TextView使用HTML处理字体样式、显示图片等

Android TextView使用HTML处理字体样式、显示图片等

     学Android的时候突然想到一个问题:怎么用TextView控件显示带有格式的文字,可否使用Html布局?查了下Android 帮助文档,其提供了android.text.Html类和Html.ImageGetter、Html.TagHandler接口。
    其实本不打算写这篇博文的,但看到网络上关于此的文章,基本是:你抄我,我抄你,大家抄来抄去,有用的也就那么一两篇文章,而且说得不明不白,网络就是如 此,盗版也成为了一种文化,这就是所谓的拿来主义吧。当然不否认大牛的辛勤劳作,写出的高质量文章;其次是学以致用,个人习惯--总结一下。

    我们平常使用TextView的setText()方法传递String参数的时候,其实是调用的public final void setText (CharSequence text)方法:

[java]view plaincopy

1 /**
2 * Sets the string value of the TextView. TextView does not accept
3 * HTML-like formatting, which you can do with text strings in XML resource files.
4 * To style your strings, attach android.text.style.* objects to a
5 * {@link android.text.SpannableString SpannableString}, or see the
6 *
7 * Available Resource Types documentation for an example of setting
8 * formatted text in the XML resource file.
9 *
10 * @attr ref android.R.styleable#TextView_text
11 */
12 @android.view.RemotableViewMethod
13 public final void setText(CharSequence text) {
14 setText(text, mBufferType);
15 }
而String类是CharSequence的子类,在CharSequence子类中有一个接口Spanned,即类似html的带标记的文本,我们可以用它来在TextView中显示html。但在上面Android源码注释中有提及TextView does not accept HTML-like formatting。
android.text.Html类共提供了三个方法,可以到Android帮助文档查看。
[java]view plaincopy

16 public static Spanned fromHtml (String source)
17
18 public static Spanned fromHtml (String source, Html.ImageGetter imageGetter, Html.TagHandler tagHandler)
19
20 public static String toHtml (Spanned text)

   通过使用第一个方法,可以将Html显示在TextView中:

[java]view plaincopy

21 public void onCreate(Bundle savedInstanceState) {
22 super.onCreate(savedInstanceState);
23 setContentView(R.layout.main);
24
25 TextView tv=(TextView)findViewById(R.id.textView1);
26 String html=“TextView 使用HTML

强 调

斜体


27 +"

超链接HTML入门学习HTML!< /p>

颜色1"
28 +"

你可能感兴趣的:(Android TextView使用HTML处理字体样式、显示图片等)