2017-11-02 12:14:39 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<selector
|
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
|
|
|
|
|
|
<item android:state_pressed="true" >
|
|
|
|
|
<shape>
|
|
|
|
|
<solid
|
2020-09-04 16:17:34 +00:00
|
|
|
android:color="@color/inverted_background_offset"/>
|
2017-11-02 12:14:39 +00:00
|
|
|
<corners
|
2022-05-20 10:22:11 +00:00
|
|
|
android:radius="6dp" />
|
2017-11-02 12:14:39 +00:00
|
|
|
<padding
|
|
|
|
|
android:left="10dp"
|
|
|
|
|
android:top="10dp"
|
|
|
|
|
android:right="10dp"
|
|
|
|
|
android:bottom="10dp" />
|
|
|
|
|
</shape>
|
|
|
|
|
</item>
|
|
|
|
|
|
|
|
|
|
<item android:state_focused="true" >
|
|
|
|
|
<shape>
|
|
|
|
|
<solid
|
2020-09-04 16:17:34 +00:00
|
|
|
android:color="@color/inverted_background_offset"
|
2017-11-02 12:14:39 +00:00
|
|
|
android:angle="270" />
|
|
|
|
|
<corners
|
2022-05-20 10:22:11 +00:00
|
|
|
android:radius="6dp" />
|
2017-11-02 12:14:39 +00:00
|
|
|
<padding
|
|
|
|
|
android:left="10dp"
|
|
|
|
|
android:top="10dp"
|
|
|
|
|
android:right="10dp"
|
|
|
|
|
android:bottom="10dp" />
|
|
|
|
|
</shape>
|
|
|
|
|
</item>
|
|
|
|
|
|
|
|
|
|
<item>
|
|
|
|
|
<shape>
|
|
|
|
|
<solid
|
2020-09-04 16:17:34 +00:00
|
|
|
android:color="@color/inverted_background"
|
2017-11-02 12:14:39 +00:00
|
|
|
android:angle="270" />
|
|
|
|
|
<corners
|
2022-05-20 10:22:11 +00:00
|
|
|
android:radius="6dp" />
|
2017-11-02 12:14:39 +00:00
|
|
|
<padding
|
|
|
|
|
android:left="10dp"
|
|
|
|
|
android:top="10dp"
|
|
|
|
|
android:right="10dp"
|
|
|
|
|
android:bottom="10dp" />
|
|
|
|
|
</shape>
|
|
|
|
|
</item>
|
|
|
|
|
</selector>
|