我正在使用这个代码的超链接:
<TextView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/hyperlink"
android:text="@string/hyperlink"
android:autoLink="web"/>
默认情况下,它是显示蓝色,但我如何改变超级链接的颜色在Android?
我正在使用这个代码的超链接:
<TextView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/hyperlink"
android:text="@string/hyperlink"
android:autoLink="web"/>
默认情况下,它是显示蓝色,但我如何改变超级链接的颜色在Android?
你可以在XML文件上使用:
android:textColorLink="Code"
“代码”可以是#ff0000或@color/red
你可以在JAVA代码中使用:
tv.setLinkTextColor(color);
颜色可以是。RED或Color.parseColor("#ff0000");
如果有人需要知道这个蓝色的十六进制值,它是#7bc9c2。
我用滴管来解决这个问题,因为我在任何地方都找不到它的文档,无论如何它不在谷歌色腭上:
https://www.google.com/design/spec/style/color.html#color-color-palette
在TextView标签的xml文件:
android:autoLink="web" //link the content of web
android:textColorLink="#FFFFFF" //change the color of the link
将这些代码行添加到XML文件中的textview,它将工作得非常好
android:autoLink="web"
android:textColorLink="@android:color/holo_orange_dark"
android:linksClickable="true"