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

Is there an easy way to use a custom image for a checkbox? I'm looking to duplicate the "starred" behavior of gmail. So I want to have a checkbox that, when checked, is a filled in star. And when unchecked is an empty star. Do I have to use an imageview and do my own logic myself?

share|improve this question

3 Answers

up vote 41 down vote accepted

Checkboxes being children of Button you can just give your checkbox a background image with several states as described here, under "Button style":
http://developer.android.com/reference/android/widget/Button.html

...and exemplified here: http://developer.android.com/guide/topics/resources/drawable-resource.html#StateList

share|improve this answer
8  
Thanks, I actually found exactly what I needed here it-ride.blogspot.com/2010/04/… but I would have had to do it your way if I wanted a real custom image =P – Falmarri Oct 19 '10 at 6:44
Thank you. Exactly what I've been looking for - I've figured out the whole state thing but I've been setting android:background instead of android:button and ended up with 2 buttons instead. Now it all works well. – Artem Russakovskii Nov 23 '10 at 23:07
-1. The android:button solution below is much better than using background attribute ! – Orabîg Sep 18 '12 at 20:05
3  
@Orabîg: This downvote is wrong. The question is perfectly answered ("Custom checkbox image"). The fact that a shortcut exists for this particular starred-button does not invalidate this answer. – ereOn Oct 17 '12 at 15:00

Copy the btn_check.xml from android-sdk/platforms/android-#/data/res/drawable to your project's drawable folder and change the 'on' and 'off' image states to your custom images.

Then your xml will just need android:button="@drawable/btn_check"

<CheckBox
    android:button="@drawable/btn_check"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:checked="true" />

If you want to use different default android icons, you can use android:button="@android:drawable/..."

share|improve this answer
Bad advice. Icons may be changed from version to version and may disappear at all. If you really like the default icon, you can grab it from sources. – Korniltsev Anatoly Oct 13 '12 at 7:51
Are you saying referencing the default icons directly via "@android:drawable/..." is a bad idea, or this process entirely? – WOUNDEDStevenJones Oct 16 '12 at 19:42
Example: reference to holo icons will crash your app on pre-honeycomb devices. It is really difficult to maintain and debug such troubles. So I usually copy not only xml but the images too to be hundreed percent sure the resources will be found. Also this is very important to ensure UI look the same on every device. – Korniltsev Anatoly Oct 18 '12 at 6:47

If you have Android open source code, you can find the styles definition under "src/frameworks/base/core/res/res/values"

<style name="Widget.CompoundButton.CheckBox">
    <item name="android:background">@android:drawable/btn_check_label_background</item>
    <item name="android:button">?android:attr/listChoiceIndicatorMultiple</item>
</style>
share|improve this answer

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.