1.代码设置
tv.setText(Html.fromHtml("<a href='https://www.taobao.com/'>满1件100元5折</a>"));
//激活超链接,设置为可点击模式
tv.setMovementMethod(LinkMovementMethod.getInstance());
2.xml
注意:android:autoLink这行代码一定不要设置,否则会无效
<TextView
android:id="@+id/tv"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!" />
<!--android:autoLink="web"-->