美文网首页
Android TextView

Android TextView

作者: Gavin_2020 | 来源:发表于2022-09-08 17:20 被阅读0次

一.设置文字超链接

设置html样式, android:autoLink="all",文字中含有链接情况下会自动对链接进行超链接处理。

 <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/about_tagtext4"
            android:autoLink="all"
            android:textSize="12sp" />
20211115160101.png

二.设置文字可选中

设置html样式, android:textIsSelectable="true"。

 <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/about_tagtext4"
            android:textIsSelectable="true"
            android:textSize="12sp" />
20211115160534.png

相关文章

网友评论

      本文标题:Android TextView

      本文链接:https://www.haomeiwen.com/subject/sgjqtrtx.html