hxb
2022-11-22 b3513b1713bb979d0a69c5a8c4ddcd038f184e6e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
    <item>
        <shape>
 
            <corners android:radius="@dimen/px_1000" />
            <padding
                android:bottom="@dimen/px_5"
                android:left="@dimen/px_5"
                android:right="@dimen/px_5"
                android:top="@dimen/px_5" />
            <solid android:color="@color/lc_demo_color_66f18d00"></solid>
        </shape>
 
    </item>
    <item>
        <shape>
            <size
                android:width="@dimen/px_40"
                android:height="@dimen/px_40" />
            <corners android:radius="@dimen/px_1000" />
            <solid android:color="@color/lc_demo_color_f18d00"></solid>
        </shape>
    </item>
</layer-list>