Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using this code for hyperlink:

<TextView 
android:layout_width="fill_parent" 
android:layout_height="fill_parent" 
android:text="@string/hyperlink"
android:id="@+id/hyperlink" 
android:autoLink="web"
>
</TextView>

By default it is showing blue color, how to change color of hyperlink in android ?

share|improve this question

2 Answers

up vote 31 down vote accepted

Add android:textColorLink="yourcolorhere" to your TextView

share|improve this answer
this worked thanks android:textColorLink="@android:color/white" – super Jul 20 '11 at 14:17

You need to use the android:textColorLink=”#000000" where 000000 is your color's hex code. Hope it helps.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.