Is it possible to set the text color for links inside the text view?

On Android, I set the property to android:autoLinkeverything for mine TextView. Can I change the color for any links found? (I don't like blue blue by default.)

+3
source share
2 answers

Try running TextViewin XML:

android:textColorLink="@android:color/someColor"

and in java code

 textview.setLinkTextColor(Color.RED);
+9
source

I think it works

   android:textColorLink="/*color*/"
0
source

All Articles