TextView中添加HTTP链接

TextView.setTextView不支持HTML TAG的输出,所以即便写成这样:

mTextView01.setText("<a href=/"http://blog.csdn.net/Vincent_czz//">Vincent_czz的专栏 - CSDN博客</a>");

实际 输出时,也就是纯文本而已,并不会作HTML TAG的转换。但若撇开HTML TAG之外(如“<”开头的标记),在TextView里加上了android:autoLink="all",那么正文中若有网址 (http://),是可以被显示的,以下这个范例就交给你自己实现看看。

<TextView  xmlns:android="http://schemas.android.com/apk/res/android"

  android:layout_width="fill_parent"

  android:layout_height="wrap_content"

  android:autoLink="all"

  android:text="请访问Vincent_czz的博客:http://blog.csdn.net/Vincent_czz"

/>

这样就可以了。

你可能感兴趣的:(TextView中添加HTTP链接)