Files
andors-trail/AndorsTrail/res/drawable/ui_blue_radiobutton.xml
Zukero df81e96a08 WARNING: Does not run!
Huge clean-up. Separation between themes and style. Preparatory work for
theme inheritance and alternative themes made by derivation.
Problem: due to a pre-lollipop bug, I still have to remove some color
indirections through attributes, as they are not preperly resolved.
2017-11-17 19:20:35 +01:00

42 lines
1.1 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android" >
<item
android:drawable="@drawable/ui_blue_radiobutton_enabled_checked"
android:state_pressed="true"
android:state_enabled="true"
/>
<item
android:drawable="@drawable/ui_blue_radiobutton_enabled_checked"
android:state_selected="true"
android:state_enabled="true"
/>
<item
android:drawable="@drawable/ui_blue_radiobutton_enabled_unchecked"
android:state_checked="false"
android:state_enabled="true"
/>
<item
android:drawable="@drawable/ui_blue_radiobutton_enabled_checked"
android:state_checked="true"
android:state_enabled="true"
/>
<item
android:drawable="@drawable/ui_blue_radiobutton_disabled_unchecked"
android:state_checked="false"
android:state_enabled="false"
/>
<item
android:drawable="@drawable/ui_blue_radiobutton_disabled_checked"
android:state_checked="true"
android:state_enabled="false"
/>
</selector>