mirror of https://github.com/buggins/dlangui.git
46 lines
1.8 KiB
XML
46 lines
1.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
<!-- Enabled states -->
|
|
|
|
<item android:state_checked="true" android:state_pressed="true"
|
|
android:state_enabled="true"
|
|
android:drawable="@drawable/btn_check_on_pressed" />
|
|
<item android:state_checked="false" android:state_pressed="true"
|
|
android:state_enabled="true"
|
|
android:drawable="@drawable/btn_check_off_pressed" />
|
|
|
|
<item android:state_checked="true" android:state_focused="true"
|
|
android:state_enabled="true"
|
|
android:drawable="@drawable/btn_check_on_focused" />
|
|
<item android:state_checked="false" android:state_focused="true"
|
|
android:state_enabled="true"
|
|
android:drawable="@drawable/btn_check_off_focused" />
|
|
|
|
<item android:state_checked="true" android:state_hovered="true"
|
|
android:state_enabled="true"
|
|
android:drawable="@drawable/btn_check_on_focused" />
|
|
<item android:state_checked="false" android:state_hovered="true"
|
|
android:state_enabled="true"
|
|
android:drawable="@drawable/btn_check_off_focused" />
|
|
|
|
<item android:state_checked="false"
|
|
android:state_enabled="true"
|
|
android:drawable="@drawable/btn_check_off" />
|
|
<item android:state_checked="true"
|
|
android:state_enabled="true"
|
|
android:drawable="@drawable/btn_check_on" />
|
|
|
|
|
|
<!-- Disabled states -->
|
|
|
|
<item android:state_checked="true"
|
|
android:drawable="@drawable/btn_check_on_disabled" />
|
|
<item android:state_checked="false"
|
|
android:drawable="@drawable/btn_check_off_disabled" />
|
|
|
|
<item android:state_checked="false" android:drawable="@drawable/btn_check_off" />
|
|
<item android:state_checked="true" android:drawable="@drawable/btn_check_on" />
|
|
|
|
</selector>
|