管灌系统巡查员智能手机App
zuoxiao
2025-01-10 c2c902a3bf998632ffffa9c1508aceba7b5a7b45
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<shape xmlns:android="http://schemas.android.com/apk/res/android">
 
    <!-- 边缘线的宽度和颜色 -->
    <stroke
        android:width="2px"
        android:color="@color/line_bg" />
    <!--
    中间渐变,角度0从左往右,正值为逆时针,270度为从上到下
    <gradient
        android:angle="270"
        android:centerColor="#e9e9e9"
        android:endColor="#d8d8d8"
        android:startColor="#ffffff" />
 
 
    -->
    <!-- 中间渐变,角度0从左往右,正值为逆时针,270度为从上到下 -->
    <gradient
        android:angle="270"
        android:centerColor="#ffffff"
        android:endColor="#ffffff"
        android:startColor="#ffffff" />
    <!-- 设置四个角的角度 -->
    <corners
        android:bottomLeftRadius="15px"
        android:bottomRightRadius="15px"
        android:topLeftRadius="15px"
        android:topRightRadius="15px" />
    <!-- 设置padding -->
 
</shape>