1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/mobile/android/base/resources/drawable/suggestion_selector.xml Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,40 @@ 1.4 +<?xml version="1.0" encoding="utf-8"?> 1.5 +<selector xmlns:android="http://schemas.android.com/apk/res/android"> 1.6 + 1.7 + <item android:state_pressed="true"> 1.8 + <shape> 1.9 + <gradient android:angle="90" 1.10 + android:startColor="#E66000" 1.11 + android:endColor="#FF9500" 1.12 + android:type="linear"/> 1.13 + 1.14 + <corners android:radius="4dp"/> 1.15 + </shape> 1.16 + </item> 1.17 + 1.18 + <item android:state_focused="true" 1.19 + android:state_enabled="true"> 1.20 + <shape> 1.21 + <gradient android:angle="90" 1.22 + android:startColor="#D2DAE2" 1.23 + android:endColor="#E3E8ED" 1.24 + android:type="linear"/> 1.25 + 1.26 + <stroke android:width="2dp" 1.27 + android:color="#E66000" /> 1.28 + 1.29 + <corners android:radius="4dp"/> 1.30 + </shape> 1.31 + </item> 1.32 + 1.33 + <item android:state_enabled="true"> 1.34 + <shape> 1.35 + <gradient android:angle="90" 1.36 + android:startColor="#D2DAE2" 1.37 + android:endColor="#E3E8ED" 1.38 + android:type="linear"/> 1.39 + 1.40 + <corners android:radius="4dp"/> 1.41 + </shape> 1.42 + </item> 1.43 +</selector>