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-11-25 13:58:20 +00:00
|
|
|
android:color="@color/brand_700" >
|
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-11-25 13:58:20 +00:00
|
|
|
android:color="@color/brand_500">
|
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
|
2020-09-04 16:17:34 +00:00
|
|
|
android:color="@color/inverted_background_offset">
|
2018-11-07 14:17:25 +00:00
|
|
|
</solid>
|
|
|
|
|
<corners
|
|
|
|
|
android:radius="8dp">
|
|
|
|
|
</corners>
|
|
|
|
|
</shape>
|
|
|
|
|
</item>
|
|
|
|
|
<item>
|
|
|
|
|
<shape android:shape="rectangle">
|
|
|
|
|
<solid
|
2022-01-20 14:00:57 +00:00
|
|
|
android:color="@color/content_background">
|
2018-11-07 14:17:25 +00:00
|
|
|
</solid>
|
|
|
|
|
<corners
|
|
|
|
|
android:radius="8dp">
|
|
|
|
|
</corners>
|
|
|
|
|
</shape>
|
|
|
|
|
</item>
|
|
|
|
|
</selector>
|