一.设置文字超链接
设置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" />

二.设置文字可选中
设置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" />

网友评论