Wed, 31 Dec 2014 07:22:50 +0100
Correct previous dual key logic pending first delivery installment.
michael@0 | 1 | <?xml version="1.0" encoding="utf-8"?> |
michael@0 | 2 | <!-- This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 3 | - License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 4 | - file, You can obtain one at http://mozilla.org/MPL/2.0/. --> |
michael@0 | 5 | |
michael@0 | 6 | <selector xmlns:android="http://schemas.android.com/apk/res/android"> |
michael@0 | 7 | |
michael@0 | 8 | <item android:state_focused="false" |
michael@0 | 9 | android:state_selected="false" |
michael@0 | 10 | android:state_pressed="false" |
michael@0 | 11 | android:drawable="@android:color/transparent"/> |
michael@0 | 12 | |
michael@0 | 13 | <item android:state_focused="false" |
michael@0 | 14 | android:state_selected="true" |
michael@0 | 15 | android:state_pressed="false" |
michael@0 | 16 | android:drawable="@drawable/tab_indicator_selected"/> |
michael@0 | 17 | |
michael@0 | 18 | <item android:state_focused="true" |
michael@0 | 19 | android:state_selected="false" |
michael@0 | 20 | android:state_pressed="false" |
michael@0 | 21 | android:drawable="@color/highlight_dark_focused"/> |
michael@0 | 22 | |
michael@0 | 23 | <item android:state_focused="true" |
michael@0 | 24 | android:state_selected="true" |
michael@0 | 25 | android:state_pressed="false" |
michael@0 | 26 | android:drawable="@drawable/tab_indicator_selected_focused"/> |
michael@0 | 27 | |
michael@0 | 28 | <item android:state_focused="false" |
michael@0 | 29 | android:state_selected="false" |
michael@0 | 30 | android:state_pressed="true" |
michael@0 | 31 | android:drawable="@color/highlight_dark"/> |
michael@0 | 32 | |
michael@0 | 33 | <item android:state_focused="false" |
michael@0 | 34 | android:state_selected="true" |
michael@0 | 35 | android:state_pressed="true" |
michael@0 | 36 | android:drawable="@color/highlight_dark"/> |
michael@0 | 37 | |
michael@0 | 38 | <item android:state_focused="true" |
michael@0 | 39 | android:state_selected="false" |
michael@0 | 40 | android:state_pressed="true" |
michael@0 | 41 | android:drawable="@color/highlight_dark"/> |
michael@0 | 42 | |
michael@0 | 43 | <item android:state_focused="true" |
michael@0 | 44 | android:state_selected="true" |
michael@0 | 45 | android:state_pressed="true" |
michael@0 | 46 | android:drawable="@color/highlight_dark"/> |
michael@0 | 47 | |
michael@0 | 48 | </selector> |