aboutsummaryrefslogtreecommitdiffstats
path: root/main/res/drawable/action_button_dark.xml
blob: bca85b4a7f39d3457b8c4eef994628f19e0a9515 (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_dark_pressed" android:state_focused="true" android:state_pressed="true"/>
    <item android:drawable="@drawable/action_button_dark_pressed" android:state_focused="false" android:state_pressed="true"/>
    <item android:drawable="@drawable/action_button_dark_selected" android:state_focused="true"/>
    <item android:drawable="@drawable/action_button_dark_default" android:state_focused="false" android:state_pressed="false"/>
    <item android:drawable="@drawable/action_button_dark_off" android:state_enabled="false"/>

</selector>