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

I'd like to change the color of a standard Android button slightly in order to better match a client's branding. For example, see the "Find a Table" button for the OpenTable application:

alt text

The best way I've found to do this so far is to change the Button's drawable to the following drawable located in res/drawable/red_button.xml:

<?xml version="1.0" encoding="utf-8"?>    
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_pressed="true" android:drawable="@drawable/red_button_pressed" />
    <item android:state_focused="true" android:drawable="@drawable/red_button_focus" />
    <item android:drawable="@drawable/red_button_rest" />
</selector>

But doing that requires that I actually create three different drawables for each button I want to customize (one for the button at rest, one when focused, and one when pressed). That seems more complicated and non-DRY than I need.

All I really want to do is apply some sort of color transform to the button. Is there an easier way to go about changing a button's color than I'm doing?

share|improve this question

7 Answers

up vote 384 down vote accepted

I discovered that this can all be done in one file fairly easily. Put something like the following code in a file named custom_button.xml and then set background="@drawable/custom_button" in your button view:

<?xml version="1.0" encoding="utf-8"?>
<selector
    xmlns:android="http://schemas.android.com/apk/res/android">

    <item android:state_pressed="true" >
        <shape>
            <gradient
                android:startColor="@color/yellow1"
                android:endColor="@color/yellow2"
                android:angle="270" />
            <stroke
                android:width="3dp"
                android:color="@color/grey05" />
            <corners
                android:radius="3dp" />
            <padding
                android:left="10dp"
                android:top="10dp"
                android:right="10dp"
                android:bottom="10dp" />
        </shape>
    </item>

    <item android:state_focused="true" >
        <shape>
            <gradient
                android:endColor="@color/orange4"
                android:startColor="@color/orange5"
                android:angle="270" />
            <stroke
                android:width="3dp"
                android:color="@color/grey05" />
            <corners
                android:radius="3dp" />
            <padding
                android:left="10dp"
                android:top="10dp"
                android:right="10dp"
                android:bottom="10dp" />
        </shape>
    </item>

    <item>        
        <shape>
            <gradient
                android:endColor="@color/blue2"
                android:startColor="@color/blue25"
                android:angle="270" />
            <stroke
                android:width="3dp"
                android:color="@color/grey05" />
            <corners
                android:radius="3dp" />
            <padding
                android:left="10dp"
                android:top="10dp"
                android:right="10dp"
                android:bottom="10dp" />
        </shape>
    </item>
</selector>
share|improve this answer
13  
That works well for background color - can you set the text color in the same way? – Rachel Jul 22 '10 at 12:04
3  
This gives me "Error: No resource found that matches the given name (at 'color' with value '@color/yellow1')" Are these references to built in colors? seems I need a res/values/color.xml to make this work – Harry Wood Feb 15 '11 at 12:38
6  
@HarryWood you have to define those colors in your res/values/colors.xml. Alternatively, substitute them by "#ff0000", "#00ff00", for testing purposes @cfarm54 That file is to be put in the res/drawable/custom_button.xml folder @emmby Thanks for the code snippet! – espinchi May 21 '11 at 20:24
6  
Great pointer, thanks! Also note for the other folks out there trying this, the order of the items in the selector is significant. If you put the <item> with no state filters first in the file it overrides the rest. – mikerowehl Jul 8 '11 at 18:30
6  
to make this work, put custom_button.xml in your res/"drawable" folder - and create a file res/values/colors.xml with these contents: stackoverflow.com/questions/3738886/… - change the color names in either file to make it work – sami Sep 22 '11 at 11:59
show 12 more comments

Following on from Tomasz's answer, you can also programmatically set the shade of the entire button using the PorterDuff multiply mode. This will change the button colour rather than just the tint.

If you start with a standard grey shaded button:

button.getBackground().setColorFilter(0xFFFF0000, PorterDuff.Mode.MULTIPLY);

will give you a red shaded button,

button.getBackground().setColorFilter(0xFF00FF00, PorterDuff.Mode.MULTIPLY);

will give you a green shaded button etc., where the first value is the colour in hex format.

It works by multiplying the current button colour value by your colour value. I'm sure there's also a lot more you can do with these modes.

share|improve this answer
2  
Wow, just tried that out and it is totally fantastic. Thank you! Do you happen to know if there's a way to accomplish it via xml somehow? – emmby Aug 19 '10 at 20:17
4  
Guys, check it on HTC Desire! They have different standard buttons. My buttons using this code look awefull there WHEN setting a certain layout_width like "40dp". With "wrap_content" it's fine. – OneWorld Sep 22 '10 at 14:08
4  
Confirmed, this solution doesn't work on HTC Sense UI very well – emmby Oct 21 '10 at 15:46
9  
Eclipse doesn't show this as a possible fix: import android.graphics.PorterDuff; – Someone Somewhere Oct 28 '11 at 18:14
1  
Has anyone had any problems with this not working in ICS? It doesn't seem to work on the emulator or phone for me.. – Stev_k May 2 '12 at 22:25
show 6 more comments

Mike, you might be interested in color filters.

An example:

button.getBackground().setColorFilter(new LightingColorFilter(0xFFFFFFFF, 0xFFAA0000));

try this to achieve the color you want.

share|improve this answer
3  
This is far better. Thanks. – Cristian Jan 24 '11 at 13:56
How to unset it? – Pacerier Mar 2 '12 at 23:09
Try passing null in the setColorFilter method. Haven't tried it but it should work. – Tomasz Mar 4 '12 at 21:21
1  
@Pacerier to unset: button.getBackground().clearColorFilter(); – Stan Kurdziel Jun 17 '12 at 9:30
1  
I recommend picking a color using the Color class: developer.android.com/reference/android/graphics/Color.html – Mugen Mar 26 at 12:35
show 1 more comment

Nope, I think you have the right answer there. Be grateful you only need three states -- there are other possible ones (e.g., disabled, selected).

You can certainly just set the background to be a solid color, which is simpler, but it means you won't see focus, clicks, etc.

share|improve this answer
Bummer! Is there a way to somehow just specify the background for all 3 images, so I can just use the default button image without having to make any custom ones at all? (And of course still support the various states) – emmby Oct 9 '09 at 18:33
Uh, the images are the background, so I'm afraid I don't understand your question. – CommonsWare Oct 9 '09 at 19:45
Right, what I mean is, could I make a transparent image that looks like a button, and then somehow just swap out the colors underneath? That way I'd only need one custom image, even though I'd still have to specify three+ different states. I know I could do this by making three different XML drawables, but it would be nice to do with just one drawable. – emmby Oct 22 '09 at 22:23
How can you make "a transparent image that looks like a button"? Wouldn't it be, um, transparent? ;-) Honestly, I still can't quite picture what you're describing. – CommonsWare Oct 22 '09 at 22:26
Easy: by making it not 100% transparent but say 80% transparent and 20% button shaped. And if you still can't imagine it here is an example: uiq3.svn.sourceforge.net/viewvc/uiq3/trunk/JavaME/FX-602P/src/… – Martin Aug 12 '10 at 17:03

I like the color filter suggestion in previous answers from @conjugatedirection and @Tomasz; However, I found that the code provided so far wasn't as easily applied as I expected.

First, it wasn't mentioned where to apply and clear the color filter. It's possible that there are other good places to do this, but what came to mind for me was an OnTouchListener.

From my reading of the original question, the ideal solution would be one that does not involve any images. The accepted answer using custom_button.xml from @emmby is probably a better fit than color filters if that's your goal. In my case, I'm starting with a png image from a UI designer of what the button is supposed to look like. If I set the button background to this image, the default highlight feedback is lost completely. This code replaces that behavior with a programmatic darkening effect.

button.setOnTouchListener(new OnTouchListener() {
    @Override
    public boolean onTouch(View v, MotionEvent event) {
        switch (event.getAction()) {
            case MotionEvent.ACTION_DOWN:
                // 0x6D6D6D sets how much to darken - tweak as desired
                setColorFilter(v, 0x6D6D6D);
                break;
            // remove the filter when moving off the button
            // the same way a selector implementation would 
            case MotionEvent.ACTION_MOVE:
                Rect r = new Rect();
                v.getLocalVisibleRect(r);
                if (!r.contains((int) event.getX(), (int) event.getY())) {
                    setColorFilter(v, null);
                }
                break;
            case MotionEvent.ACTION_OUTSIDE:
            case MotionEvent.ACTION_CANCEL:
            case MotionEvent.ACTION_UP:
                setColorFilter(v, null);
                break;
        }
        return false;
    }

    private void setColorFilter(View v, Integer filter) {
        if (filter == null) v.getBackground().clearColorFilter();
        else {
            // To lighten instead of darken, try this:
            // LightingColorFilter lighten = new LightingColorFilter(0xFFFFFF, filter);
            LightingColorFilter darken = new LightingColorFilter(filter, 0x000000);
            v.getBackground().setColorFilter(darken);
        }
        // required on Android 2.3.7 for filter change to take effect (but not on 4.0.4)
        v.getBackground().invalidateSelf();
    }
});

I extracted this as a separate class for application to multiple buttons - shown as anonymous inner class just to get the idea.

share|improve this answer
That was a great solution! Mostly same affect as you get on iOS by default which is what designers like :-) – Christer Nordvik Sep 9 '12 at 19:41
Thank you for this. Call me crazy, but I am just totally not keen to mess around with all this damn xml - I just want to it all in code!!! – Herr Grumps Oct 24 '12 at 14:11
its working well what i expect.. thank u.. – Ganesh Feb 12 at 10:49

If you are making colour buttons with XML you can make the code a bit cleaner by specifying the focused and pressed state in a separate file and reuse them. My green button looks like this:

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">

    <item android:state_focused="true" android:drawable="@drawable/button_focused"/>
    <item android:state_pressed="true" android:drawable="@drawable/button_pressed"/>

    <item>
        <shape>
            <gradient android:startColor="#ff00ff00" android:endColor="#bb00ff00" android:angle="270" />
            <stroke android:width="1dp" android:color="#bb00ff00" />
            <corners android:radius="3dp" />
            <padding android:left="10dp" android:top="10dp" android:right="10dp" android:bottom="10dp" />
        </shape>
    </item>

</selector>
share|improve this answer
nice. how could one make the focused and pressed state refer back to standard android definitions for buttons? – larham1 Feb 13 '12 at 22:22
I am pretty sure you don't as the standard Android buttons are implemented as 9-patch bitmaps. – haemish Mar 7 '12 at 17:29

The DroidUX component library has a ColorButton widget whose color can be changed easily, both via xml definition and programmatically at run time, so you can even let the user to set the button's color/theme if your app allows it.

share|improve this answer

protected by Will Sep 22 '10 at 13:19

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.