aboutsummaryrefslogtreecommitdiffstats
path: root/main/res/drawable/action_button_dark.xml
blob: 7732b8e2643217e485e685ff254a9d0adc0f4b07 (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_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>