I have a checkbox in a listview in android. Checkboxes are there to indicate the item checked. I have set the checkbox disabled so that there wont be any events on clicking the checkbox. Now disabled checkbox tick mark is a very dull grey color tick. is there any way of changing the tick mark color of disabled checkbox in android?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
You need separate images for your checkbox and that too for different states ... checked, not checked, disabled, clicked(transition between checked and not checked states). after that you need to make a drawable.xml in you drawble folder and set it as the background of you checkbox. Then only you can change the color of the checkbox on diff states. Else, you need to go with the default theme. Let me know if you need sample of what I said above. It seems complicated but quite easy. This page tries to explain what I am saying. |
|||||
|