hch
2024-03-30 8307b1b2236a36d4dfb51faf6fe3d0faedb7617c
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"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle"
    android:useLevel="false" >
    <corners android:radius="5dp" />
 
    <solid android:color="@color/white" />
    <!-- 描边灰色 -->
    <stroke
        android:width="0.5dp"
        android:color="@color/white" />
    <!-- 字体内边距离 -->
    <padding
        android:bottom="5dp"
        android:left="10dp"
        android:right="10dp"
        android:top="5dp" />
    
    
    
</shape>