Move a bunch of UI elements into reusable styles, along with removing literal dimen resources.
16 lines
No EOL
500 B
XML
16 lines
No EOL
500 B
XML
<?xml version="1.0" encoding="utf-8"?><!--
|
|
Divider used by recyclerview header items
|
|
https://stackoverflow.com/a/61157571/14143986
|
|
-->
|
|
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
|
<item
|
|
android:left="-2dp"
|
|
android:right="-2dp"
|
|
android:top="-2dp">
|
|
<shape android:shape="rectangle">
|
|
<stroke
|
|
android:width="0.5dp"
|
|
android:color="@color/divider_color" />
|
|
</shape>
|
|
</item>
|
|
</layer-list> |