Warning: Use of undefined constant _FILE_ - assumed '_FILE_' (this will throw an Error in a future version of PHP) in /home/bolyarco/www-ikratko/ogrelab/wp-content/plugins/ad-blocker-stats-vip/ad-blocker-stats-vip.php on line 13

Warning: count(): Parameter must be an array or an object that implements Countable in /home/bolyarco/www-ikratko/ogrelab/wp-content/plugins/microkids-related-posts/microkids-related-posts.php on line 645

Custom color buttons for Android (9-patch images + example project)

Posted / Публикувана 2011-02-15 in category / в категория: Android

Warning: count(): Parameter must be an array or an object that implements Countable in /home/bolyarco/www-ikratko/ogrelab/wp-content/plugins/microkids-related-posts/microkids-related-posts.php on line 645

On several occasions I had to create simple buttons that use different background color than the default gray. I've tried to google for already cooked solution but quite surprisingly -- I was unable to find one that suits me so I had to create solution by my self (not really, I just combined other solutions in one easy to use packaged solution).

There are three approaches:

1. First approach (bad) -- just set the background to some color like this

The problems:

a) button does not have rounded edges (and does not fit in the look & feel, i.e. looks alien)

b) does not support changes of the color to indicate focus or pressed state.

2. Second approach (not very good) -- create custom drawable definitions in xml file that use gradients (<gradient>). The problem is that buttons don't look quite the same as default buttons -- edges are not quite with the same roundness, margins and paddings are different. When I first tried to create colored buttons I've tried this approach but after 2-3 hours playing with paddings and roundess I finally gived up.

3. Third approach (the right(eous) one) -- Use different 9-patch images for the different colors.

It works very simple:

3.1. Create images 9-patch images for the different colors that you need and put them into drawable-hdpi and drawable-mdpi (yes, you will need two versions if you want your buttons to look good on different devices).

3.2. Create XML files with <selector> for each color (in the example project drawable/custom_button_*.xml)

3.3. Use your new buttons in your layout (in the example project main.xml)

Download example (eclipse) project that shows how the things are wired together.

Download just the 9-patch images

Warning: because default android drawables for buttons are inaccessible (i.e. private and cannot be referenced from layout XML) I had to copy default images in drawable-hdpi and drawable-mdpi. In the future (next version of Android) Google may decide to change default images and this may lead to inconsistent look of the applications that use custom buttons. The solution is to stick your apps to all custom buttons or all default buttons.

Running the project should result in something like:

 

<Buttonandroid:id="@+id/Button01"
2 android:text="My Name"
3 android:background="#2563EA"
4 android:layout_height="50px"
5 android:layout_width="100px"/>

2 Responses to “Custom color buttons for Android (9-patch images + example project)”

  1. Grant Says:

    Thanks for the help. Your source project made me realise whats wrong. For 9 patch to be valid you need to have at least one of the content areas being a full line, otherwise its invalid

  2. arian Says:

    really helpful
    thanks