mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-06 00:45:32 +00:00
Copy over the Android source Update build.sh scripts for new paths KMEA/build.sh also updated to build KMW and use the artifacts
61 lines
2 KiB
XML
61 lines
2 KiB
XML
<?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="oval">
|
|
<gradient
|
|
android:startColor="@android:color/holo_blue_light"
|
|
android:endColor="@android:color/holo_blue_dark"
|
|
android:angle="90" />
|
|
<stroke
|
|
android:width="2dp"
|
|
android:color="@android:color/holo_blue_bright" />
|
|
<corners
|
|
android:radius="0dp" />
|
|
<padding
|
|
android:left="2dp"
|
|
android:top="2dp"
|
|
android:right="2dp"
|
|
android:bottom="2dp" />
|
|
</shape>
|
|
</item>
|
|
|
|
<item android:state_focused="true" >
|
|
<shape android:shape="oval">
|
|
<gradient
|
|
android:startColor="@android:color/holo_blue_light"
|
|
android:endColor="@android:color/holo_blue_dark"
|
|
android:angle="90" />
|
|
<stroke
|
|
android:width="2dp"
|
|
android:color="@android:color/holo_blue_bright" />
|
|
<corners
|
|
android:radius="0dp" />
|
|
<padding
|
|
android:left="2dp"
|
|
android:top="2dp"
|
|
android:right="2dp"
|
|
android:bottom="2dp" />
|
|
</shape>
|
|
</item>
|
|
|
|
<item>
|
|
<shape android:shape="oval">
|
|
<gradient
|
|
android:startColor="@android:color/darker_gray"
|
|
android:endColor="@android:color/background_light"
|
|
android:angle="90" />
|
|
<stroke
|
|
android:width="0dp"
|
|
android:color="#E6E6E6" />
|
|
<corners
|
|
android:radius="0dp" />
|
|
<padding
|
|
android:left="0dp"
|
|
android:top="0dp"
|
|
android:right="0dp"
|
|
android:bottom="0dp" />
|
|
</shape>
|
|
</item>
|
|
</selector>
|