2016-09-29 17:48:34 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2018-11-07 14:17:25 +00:00
|
|
|
<selector
|
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
|
|
|
|
|
|
<item android:state_pressed="true" >
|
|
|
|
|
<shape android:shape="rectangle">
|
|
|
|
|
<solid
|
2019-08-07 08:29:58 +00:00
|
|
|
android:color="?colorPrimaryDistinct" >
|
2018-11-07 14:17:25 +00:00
|
|
|
</solid>
|
|
|
|
|
<corners
|
|
|
|
|
android:radius="8dp">
|
|
|
|
|
</corners>
|
|
|
|
|
</shape>
|
|
|
|
|
</item>
|
|
|
|
|
|
|
|
|
|
<item android:state_focused="true" >
|
|
|
|
|
<shape android:shape="rectangle">
|
|
|
|
|
<solid
|
2019-08-07 08:29:58 +00:00
|
|
|
android:color="?colorAccent">
|
2018-11-07 14:17:25 +00:00
|
|
|
</solid>
|
|
|
|
|
<corners
|
|
|
|
|
android:radius="8dp">
|
|
|
|
|
</corners>
|
|
|
|
|
</shape>
|
|
|
|
|
</item>
|
|
|
|
|
<item android:state_enabled="false">
|
|
|
|
|
<shape android:shape="rectangle">
|
|
|
|
|
<solid
|
|
|
|
|
android:color="@color/gray_200">
|
|
|
|
|
</solid>
|
|
|
|
|
<corners
|
|
|
|
|
android:radius="8dp">
|
|
|
|
|
</corners>
|
|
|
|
|
</shape>
|
|
|
|
|
</item>
|
|
|
|
|
<item>
|
|
|
|
|
<shape android:shape="rectangle">
|
|
|
|
|
<solid
|
2019-08-07 08:29:58 +00:00
|
|
|
android:color="?colorPrimaryOffset">
|
2018-11-07 14:17:25 +00:00
|
|
|
</solid>
|
|
|
|
|
<corners
|
|
|
|
|
android:radius="8dp">
|
|
|
|
|
</corners>
|
|
|
|
|
</shape>
|
|
|
|
|
</item>
|
|
|
|
|
</selector>
|