管灌系统巡查员智能手机App
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?xml version="1.0" encoding="utf-8"?>
<ripple xmlns:android="http://schemas.android.com/apk/res/android"
    android:color="?android:attr/colorControlHighlight">
    <!-- 背景形状及颜色 -->
    <item>
        <shape android:shape="rectangle">
            <solid android:color="@color/white" /> <!-- 背景色 -->
            <corners android:radius="7dp" />
            <stroke
                android:width="1dp"
                android:color="#ededed" />
        </shape>
    </item>
    <!-- 掩码效果,用于控制波纹范围(可选) -->
    <item android:id="@android:id/mask">
        <shape android:shape="rectangle">
            <solid android:color="@color/text_color" /> <!-- 掩码颜色 -->
        </shape>
    </item>
</ripple>