1.这些类似html标签可以用Html.fromHtml方法将html标签字符串转化成CharSequence对象,然后再TextView中进行设置:
如:
在.xml文件中
<TextView
android:id="@+id/textview1"
android:padding="20sp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
在.java文件中
textView1 = (TextView) findViewById(R.id.textview1);
String html = "<font color='red'>I love android </font><br>";
html+="<font color='#0000ff'><big><i>I love android</i> </big></font><p>";
html+="<big><a href='http://www.baidu.com'>百度</a></big>";
CharSequence charSequence = Html.fromHtml(html);
textView1.setText(charSequence);
textView1.setMovementMethod(LinkMovementMethod.getInstance());//点击的时候产生超链接
2.如果想在显示文本中将URL地址,邮箱地址,电话超链接的效果可以使用android::autoLink设置.
如:
在.xml文件中
<TextView
android:id="@+id/textview2"
android:padding="20sp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:autoLink="all"
android:textSize="20sp"
android:text="@string/link_text"
/>
strings.xml中:
<string name="link_text"><a href="tel:18870076184">打电话</a></string>
在.java文件中:
String text = "我的URL:http://www.sina.com
";
text+="我的email:abcd@126.com
";
text+="我的电话:18870076184";
textView2.setText(text);
textView2.setMovementMethod(LinkMovementMethod.getInstance());
运行结果: