up vote 164 down vote favorite
164
share [g+] share [fb]

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?

link|improve this question

73% accept rate
feedback

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.

6 Answers

up vote 247 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>
link|improve this answer
Thanks. This is very useful – olore May 30 '10 at 13:09
5  
That works well for background color - can you set the text color in the same way? – Rachel Jul 22 '10 at 12:04
2  
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
4  
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
1  
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 9 more comments
feedback

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.

link|improve this answer
Oh, I should add that with this method you won't need 3 drawables, as it applies the colour transform after the highlight/selection. The resulting colour might vary but the colour tint should carry through. – conjugatedirection Aug 15 '10 at 1:42
1  
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
3  
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
3  
Confirmed, this solution doesn't work on HTC Sense UI very well – emmby Oct 21 '10 at 15:46
Is there a proper documentation for the PorterDuff Mode? Right now I am trying to make a button look black! It's ridiculous... – OneWorld Nov 22 '10 at 13:03
show 3 more comments
feedback

Mike, you might be interested in color filters. You can play with them to achieve the color you want.

An example:

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

link|improve this answer
2  
This is far better. Thanks. – Cristian Jan 24 '11 at 13:56
feedback

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.

link|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
feedback

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.

link|improve this answer
feedback

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>
link|improve this answer
feedback

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