habitica-android/Habitica/res/drawable/selection_highlight.xml

18 lines
568 B
XML
Raw Normal View History

2015-11-07 14:27:17 +00:00
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true">
<shape android:shape="rectangle">
<solid android:color="#33000000" />
2015-11-07 14:27:17 +00:00
</shape>
</item>
<item android:state_focused="true">
2015-11-07 14:27:17 +00:00
<shape android:shape="rectangle">
<solid android:color="#33000000" />
2015-11-07 14:27:17 +00:00
</shape>
</item>
<item>
<shape android:shape="rectangle">
<solid android:color="#00000000" />
2015-11-07 14:27:17 +00:00
</shape>
</item>
</selector>