blob: 21d231023df143b1c29dbd81ad237c2f3d0ea16f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?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>
|