一、 不隐藏
<TextView
android:id="@+id/tv_offlinebbs"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:autoLink="web"
android:text="Google Address http://www.google.com" />
二、隐藏连接
1.在String.xml 中添加
<string name="link"><a href="http://www.google.com" >Google Address</a></string>
2.TextView中要将autoLink去掉,将android:text引用String.xml中的 link
<TextView
android:id="@+id/tv_offlinebbs"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/link" />
3.在 Activity 中添加
TextView t2 = (TextView) findViewById(R.id.link);
t2.setMovementMethod(LinkMovementMethod.getInstance());
转载于:https://blog.51cto.com/kimbook/1100984