Android TextView

2022-09-08  本文已影响0人  Gavin_2020

一.设置文字超链接

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

猜你喜欢

热点阅读