2012-05-25 02:32:37 +04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!-- This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
- License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
|
|
|
|
|
|
|
|
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
|
2014-09-02 13:47:16 +04:00
|
|
|
<item android:state_pressed="true"
|
|
|
|
android:state_enabled="true">
|
2013-04-29 21:55:23 +04:00
|
|
|
<shape>
|
|
|
|
<solid android:color="@color/highlight" />
|
|
|
|
</shape>
|
|
|
|
</item>
|
2013-03-13 23:28:01 +04:00
|
|
|
|
|
|
|
<item android:state_focused="true"
|
2013-04-29 21:55:23 +04:00
|
|
|
android:state_pressed="false">
|
|
|
|
<shape>
|
|
|
|
<solid android:color="@color/highlight_focused" />
|
|
|
|
</shape>
|
|
|
|
</item>
|
2013-03-13 23:28:01 +04:00
|
|
|
|
2016-04-06 00:54:40 +03:00
|
|
|
<item android:drawable="@android:color/transparent"/>
|
2012-05-25 02:32:37 +04:00
|
|
|
|
|
|
|
</selector>
|