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 | xmlns:gecko="http://schemas.android.com/apk/res-auto"> |
michael@0 | 8 | |
michael@0 | 9 | <item android:state_focused="true"> |
michael@0 | 10 | |
michael@0 | 11 | <shape android:shape="rectangle"> |
michael@0 | 12 | <solid android:color="#B3FF9500"/> |
michael@0 | 13 | <corners android:radius="3dp"/> |
michael@0 | 14 | </shape> |
michael@0 | 15 | |
michael@0 | 16 | </item> |
michael@0 | 17 | |
michael@0 | 18 | <item android:state_pressed="true"> |
michael@0 | 19 | |
michael@0 | 20 | <shape android:shape="rectangle"> |
michael@0 | 21 | <solid android:color="#B3FF9500"/> |
michael@0 | 22 | <corners android:radius="3dp"/> |
michael@0 | 23 | </shape> |
michael@0 | 24 | |
michael@0 | 25 | </item> |
michael@0 | 26 | |
michael@0 | 27 | <item gecko:state_recording="true"> |
michael@0 | 28 | |
michael@0 | 29 | <shape android:shape="rectangle"> |
michael@0 | 30 | <solid android:color="#FFFF0000"/> |
michael@0 | 31 | <corners android:radius="3dp"/> |
michael@0 | 32 | </shape> |
michael@0 | 33 | |
michael@0 | 34 | </item> |
michael@0 | 35 | |
michael@0 | 36 | <item android:state_focused="false" |
michael@0 | 37 | android:state_pressed="false" |
michael@0 | 38 | android:state_checked="true" |
michael@0 | 39 | gecko:state_recording="false"> |
michael@0 | 40 | |
michael@0 | 41 | <shape android:shape="rectangle"> |
michael@0 | 42 | <solid android:color="#FFFF9500"/> |
michael@0 | 43 | <corners android:radius="3dp"/> |
michael@0 | 44 | </shape> |
michael@0 | 45 | |
michael@0 | 46 | </item> |
michael@0 | 47 | |
michael@0 | 48 | <item android:drawable="@android:color/transparent"/> |
michael@0 | 49 | |
michael@0 | 50 | </selector> |