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.)
android:autoLink
TextView
Try running TextViewin XML:
android:textColorLink="@android:color/someColor"
and in java code
textview.setLinkTextColor(Color.RED);
I think it works
android:textColorLink="/*color*/"