Created
April 11, 2016 09:26
-
-
Save sheerazam/1fd702d28799df38b9d2b336b8ed119f to your computer and use it in GitHub Desktop.
Change style for Checkbox http://stackoverflow.com/questions/11464143/android-set-color-of-checkbox/11464319#11464319 http://stackoverflow.com/questions/10135499/android-checkbox-style/10139809#10139809
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="utf-8"?> | |
| <selector xmlns:android="http://schemas.android.com/apk/res/android"> | |
| <item android:state_checked="true" | |
| android:drawable="@drawable/cbchk_blue" | |
| android:state_focused="false"> | |
| </item> | |
| <item android:state_checked="true" | |
| android:drawable="@drawable/cbchk_blue" | |
| android:state_focused="true"> | |
| </item> | |
| <item android:state_checked="false" | |
| android:drawable="@drawable/cbunchk_blue" | |
| android:state_focused="false"> | |
| </item> | |
| <item android:state_checked="false" | |
| android:drawable="@drawable/cbunchk_blue" | |
| android:state_focused="true"> | |
| </item> | |
| </selector> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment