lmw
2024-06-07 b1d822d6272dc33928586ffa18b9ed3247f32522
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
    <item >
        <shape android:shape="line">
            <solid android:color="@color/dividing_line_color"/>
            <size android:height="1dp"/>
        </shape>
    </item>
 
    <item android:top="9dp">
        <shape android:shape="line">
            <solid android:color="@color/dividing_line_color"/>
            <size android:height="1dp"/>
        </shape>
    </item>
</layer-list>