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

In XML, We can set text color by textColor Attribute. Like android:textColor="#FF0000".

But How do I change it by coding?

I tried something like:

holder.text.setTextColor(R.color.Red);

Where holder is just a class and text is of type TextView. Red is RGB value (#FF0000) set in strings.

But it shows different color rather then red. So I'm wandering that what kind of parameter we can pass in setTextColor()? In docs, it says int but is it a resource reference value or anything else?

share|improve this question

14 Answers

up vote 219 down vote accepted

You should use

holder.text.setTextColor(Color.RED);

for a sanity check I just tried it because I had a project open anyway, and yes, it's nice and red ;D


This is a surprisingly popular question, so lets make this answer as complete as possible:

You can use various functions from the Color class to get the same effect of course.

  • Color.parseColor (Manual) (like LEX uses)

    text.setTextColor(Color.parseColor("#FFFFFF"));
    
  • Color.rgb and Color.argb (Manual rgb) (Manual argb) (like Ganapathy uses)

    holder.text.setTextColor(Color.rgb(200,0,0));
    holder.text.setTextColor(Color.argb(0,200,0,0));
    
  • And ofcourse like xbakesx says, if you want to define your color in an XML file, you can do this:

    <color name="errorColor">#f00</color>
    

    and then use this code to show it:

    textView.setTextColor(getResources().getColor(R.color.errorColor));
    
  • You can also insert plain HEX, like so: (A.W. has this in an answer, pavko_a just added it here as well)

    myTextView.setTextColor(0xAARRGGBB);
    

    Where you have an alpha-channel first, then the color value.

Check out the complete manual ofcourse: http://developer.android.com/reference/android/graphics/Color.html

share|improve this answer
1  
In addition, if the text is a link you need to use text.setLinkTextColor(...); in code or android:textColorLink="..." in XML – WOUNDEDStevenJones Oct 18 '12 at 22:46

If you still want to specify your colors in your XML file:

<color name="errorColor">#f00</color>

Then reference it in your code:

textView.setTextColor(getResources().getColor(R.color.errorColor));
share|improve this answer
6  
For setTextColor, why does it have to take the getResources().getColor() rather than the direct R.color.errorColor reference? The R.color.x works for almost every other method. Incredibly frustrating! – Civilian Jul 20 '11 at 21:57
4  
@Civilian: because the int param that the setXXXColor() methods require is taken as the actual ARGB value to use, NOT the value to lookup in the resources file. Strangely enough, the View class has both setBackgroundColor() and setBackgroundResource(), while TextView is missing a setTextResource() method. – Ian Kemp Oct 27 '11 at 20:51

and another one:

TextView text = (TextView) findViewById(R.id.text);
text.setTextColor(Color.parseColor("#FFFFFF"));
share|improve this answer
This is Much better.. "getresources" method doesn't work in Adapter classes.. – hemanth kumar Feb 18 '12 at 5:31
good & useful trick :) – Igor Popov Feb 23 '12 at 19:28

You can use

holder.text.setTextColor(Color.rgb(200,0,0));

You can also specify what color you want with Transparency.

holder.text.setTextColor(Color.argb(0,200,0,0));

a for Alpha (Transparent) value r-red g-green b-blue

share|improve this answer

you can do this only from xml file too.

create a color.xml file in values folder

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <color name="textbody">#ffcc33</color>

</resources>

then in any xml file you can set color for text using,

android:textColor="@color/textbody"

or you can use this color in java file

final TextView tvchange12 = (TextView) findViewById(R.id.textView2);
//set color for textbody from color.xml file
tvchange1.setTextColor(getResources().getColor(R.color.textbody));
share|improve this answer

I believe that if you want to specify a color as a resource (in the xml file), you'll have to provide its ARGB value (not simply the RGB value).

Try changing your color value to #FFFF0000, it should give you RED.

share|improve this answer
to my experience, that's not true and it is possible to use a RGB value instead of a ARGB value – dmmh Aug 2 '12 at 16:48

For me I normally do this for any views:

myTextView.setTextColor(0xAARRGGBB);

where

  • AA defines alpha (00 for transparent, FF for opaque)

  • RRGGBB defines normal html color code (like FF0000 for red)

share|improve this answer
And why the down-vote? Can you add some thoughts on this please? – A.W May 16 at 2:32

use

TextView tv = new TextView(this);
tv.setTextColor(Color.rgb(285,0,0));
share|improve this answer

If you plan to use setTextAppearance you should know that it will overwrite the text color with the style inherited from the theme. So if you want to use both, set the color afterwards.

This works:

textView.setTextAppearance(context, android.R.style.TextAppearance_Medium);
textView.setTextColor(Color.RED);

While this will cause your textcolor to be for instance white(for dark theme) or black(for the light theme):

textView.setTextColor(Color.RED);
textView.setTextAppearance(context, android.R.style.TextAppearance_Medium);

Contrary to this in XML the order is arbitrary.

share|improve this answer
In Adapter you can set the text color by using this code:

holder.my_text_view = (TextView) convertView.findViewById(R.id.my_text_view);
holder.my_text_view.setTextColor(Color.parseColor("#FFFFFF"));
share|improve this answer

holder.text.setTextColor(Color.rgb(200,0,0)); or myTextView.setTextColor(0xAARRGGBB);

share|improve this answer
Using Adapter you can set the text color by using this code, may be helpful to you try it:

holder.text_view = (TextView) convertView.findViewById(R.id.text_view);
holder.text_view.setTextColor(Color.parseColor("#FF00FF"));
share|improve this answer
   textViewStatus.setTextColor(res.getColor(R.color.green));
share|improve this answer

to add text color type like this

android:textColor="#0F0"

share|improve this answer
1  
Welcome to SO. Please read the question. The OP clearly states (In XML, We can set text color by textColor Attribute. Like android:textColor="#FF0000".) that he is aware of the XML method and wanted the Java way of doing it. Also, don't put up your website as a signature in a post. Add that to your Profile. – IceMAN Apr 20 at 12:18

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.