TextView 设置超链接无效的解决方法

2018-09-06  本文已影响133人  阳光下的美好_6e13

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"-->
上一篇下一篇

猜你喜欢

热点阅读