how to change color of textview hyperlink?
If you want to change it programmatically:
yourText.setLinkTextColor(Color.RED);
You can use on your XML file:
android:textColorLink="Code"
the "Code" can be e.g. #ff0000
or @color/red
You can use on your JAVA code :
tv.setLinkTextColor(color);
The color can be e.g Color.RED
or Color.parseColor("#ff0000");
Add android:textColorLink="yourcolorhere"
to your TextView