Вопрос

In Android, I'm setting the android:autoLink property to all for my TextView. Is it possible to change the color for any links that are found? (I'm not in love with the default blue.)

Это было полезно?

Решение

Try for TextView in the XML:

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

and in Java code

 textview.setLinkTextColor(Color.RED);

Другие советы

i think it works

   android:textColorLink="/*color*/"
Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top