左晓为主开发手持机充值管理机
zuoxiao
2025-04-08 eb53d9c4837b5a0df0db1ca153e05bf305ce498a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
    <!-- 阴影层 -->
    <item>
        <shape android:shape="oval">
            <solid android:color="#30000000" />
            <padding android:bottom="1dp" android:left="1dp" android:right="1dp" android:top="1dp" />
        </shape>
    </item>
    <!-- 主背景 -->
    <item>
        <shape android:shape="oval">
            <gradient
                android:angle="135"
                android:endColor="#1E88E5"
                android:centerColor="#4285F4"
                android:startColor="#5C9CE6"
                android:type="linear" />
        </shape>
    </item>
</layer-list>