2017-05-07 06:36:25 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-01-07 18:46:31 -05:00
|
|
|
<ripple xmlns:android="http://schemas.android.com/apk/res/android"
|
2020-04-19 12:08:40 -04:00
|
|
|
android:color="?attr/colorLibrarySelection">
|
2020-01-07 18:46:31 -05:00
|
|
|
<item>
|
|
|
|
<selector>
|
2021-06-01 17:56:36 -04:00
|
|
|
<item
|
|
|
|
android:state_selected="true"
|
|
|
|
android:top="2dp"
|
|
|
|
android:right="2dp"
|
|
|
|
android:bottom="2dp"
|
|
|
|
android:left="2dp">
|
|
|
|
<shape android:shape="rectangle">
|
|
|
|
<corners android:radius="@dimen/card_radius" />
|
|
|
|
<solid android:color="?attr/colorLibrarySelectionActive" />
|
|
|
|
</shape>
|
2020-01-07 18:46:31 -05:00
|
|
|
</item>
|
2017-05-07 06:36:25 -04:00
|
|
|
|
2021-06-01 17:56:36 -04:00
|
|
|
<item
|
|
|
|
android:state_activated="true"
|
|
|
|
android:top="2dp"
|
|
|
|
android:right="2dp"
|
|
|
|
android:bottom="2dp"
|
|
|
|
android:left="2dp">
|
|
|
|
<shape android:shape="rectangle">
|
|
|
|
<corners android:radius="@dimen/card_radius" />
|
|
|
|
<solid android:color="?attr/colorLibrarySelectionActive" />
|
|
|
|
</shape>
|
2020-01-07 18:46:31 -05:00
|
|
|
</item>
|
2017-05-07 06:36:25 -04:00
|
|
|
|
2021-06-01 17:56:36 -04:00
|
|
|
<item
|
|
|
|
android:top="2dp"
|
|
|
|
android:right="2dp"
|
|
|
|
android:bottom="2dp"
|
|
|
|
android:left="2dp">
|
|
|
|
<shape android:shape="rectangle">
|
|
|
|
<corners android:radius="@dimen/card_radius" />
|
|
|
|
<solid android:color="?android:attr/colorBackground" />
|
|
|
|
</shape>
|
2020-01-07 18:46:31 -05:00
|
|
|
</item>
|
|
|
|
</selector>
|
|
|
|
</item>
|
|
|
|
</ripple>
|