riku
2025-07-02 3013b813e5df6977c0be921928f73b1a3adde290
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle" >
 
    <!-- 填充的颜色 -->
    <solid android:color="@android:color/white" />
    <!-- 设置按钮的四个角为弧形 -->
    <!-- android:radius 弧形的半径 -->
    <corners
        android:bottomLeftRadius="0dp"
        android:bottomRightRadius="0dp"
        android:topLeftRadius="0dp"
        android:topRightRadius="100dp"/>
 
    <stroke android:width="0dp" android:color="#eee"/>
    <!-- padding:Button里面的文字与Button边界的间隔 -->
    <!--<padding-->
        <!--android:bottom="2dp"-->
        <!--android:left="10dp"-->
        <!--android:right="10dp"-->
        <!--android:top="2dp" />-->
    
</shape>