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?
|
Checkboxes being children of Button you can just give your checkbox a background image with several states as described here, under "Button style": ...and exemplified here: http://developer.android.com/guide/topics/resources/drawable-resource.html#StateList |
|||||||||||||
|
|
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
If you want to use different default android icons, you can use |
|||||||
|
|
If you have Android open source code, you can find the styles definition under "src/frameworks/base/core/res/res/values"
|
|||
|
|