Runt
2022-03-29 82fbf5fc5c45bf592d277ee3757e102f867fbab2
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
<?xml version="1.0" encoding="utf-8"?>
<ripple xmlns:android="http://schemas.android.com/apk/res/android"
    android:color="@color/color_gray">
    <item>
        <selector>
            <item android:state_pressed="true">
                <shape android:shape="rectangle">
                    <solid android:color="@color/gray_pressed" />
                </shape>
            </item>
 
            <item android:state_enabled="false">
                <shape android:shape="rectangle">
                    <solid android:color="@color/cut_off_line" />
                </shape>
            </item>
 
            <item>
                <shape android:shape="rectangle">
                    <solid android:color="@color/white" />
                </shape>
            </item>
 
        </selector>
    </item>
 
</ripple>