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

How can I set Text Color of a text view to "#bdbdbd" programatically...?

share|improve this question

4 Answers

up vote 55 down vote accepted

Use,..

Color.parseColor("#bdbdbd");

like,

button.setBackgroundColor(Color.parseColor("#bdbdbd"));
share|improve this answer
1  
Excellent answer ;) – androniennn Dec 26 '12 at 14:08
yourTextView.setTextColor(color);

Or, in your case: yourTextView.setTextColor(0xffbdbdbd);

share|improve this answer
TextView tt;
int color = Integer.parseInt("bdbdbd", 16)+0xFF000000);
tt.setTextColor(color);

see:

Java/Android String to Color conversion

share|improve this answer

Great answers. Adding one that loads the color from an Android resources xml but still sets it programmatically:

textView.setTextColor(getResources().getColor(R.color.some_color));

where gray is defined in an xml:

<resources>
  <color name="some_color">#bdbdbd</color>
</resources>
share|improve this answer

protected by user370305 Feb 27 at 6:14

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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