aboutsummaryrefslogtreecommitdiffstats
path: root/main/res/drawable/action_button_light.xml
blob: b23b3b92529cc3ad886ff53f1e0834dfbe2bd6f1 (plain)
1
2
3
4
5
6
7
8
9
10
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">

    <item android:drawable="@drawable/action_button_light_pressed" android:state_focused="true" android:state_pressed="true"/>
    <item android:drawable="@drawable/action_button_light_pressed" android:state_focused="false" android:state_pressed="true"/>
    <item android:drawable="@drawable/action_button_light_selected" android:state_focused="true"/>
    <item android:drawable="@drawable/action_button_light_default" android:state_focused="false" android:state_pressed="false"/>
    <item android:drawable="@drawable/action_button_light_off" android:state_enabled="false"/>

</selector>