Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to change the color of certain words (Search results) in a TextView? I tried to use ANSI colors like this:

text.setText("\u001B31;1m" + "someText");

but it did not work. How do I achieve this?

share|improve this question

2 Answers

up vote 4 down vote accepted

this will help u

 Spannable WordtoSpan = new SpannableString("I know just how to whisper");        
    WordtoSpan.setSpan(new ForegroundColorSpan(Color.BLUE), 5, 13, 
                                               Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
    tv.setText(WordtoSpan);
share|improve this answer
5 , 13 are the charecter,s length. – RajaReddy PolamReddy Sep 8 '11 at 12:11
Worked perfectly. I will accept this answer as a solution for the code provided. Thanks. – khr2003 Sep 8 '11 at 13:35

You're looking for TextAppearanceSpan and 'SpannableString' To be more clear workflow is as follow

  1. Create SpannableString from your source String
  2. Create TextAppearanceSpan and set it via call to setSpan method on SpannableString
  3. Call textView.setText method with SpannableString as argument
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.