左晓为主开发手持机充值管理机
zuojincheng
2025-04-03 d0a0e8e242e293ad35dfbee1217f1103302818cd
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>