<?xml version="1.0" encoding="utf-8"?>
<!-- 矩形圆角+左右两边为一个圆弧 -->
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle"
    android:useLevel="true">
    <solid android:color="#FF6060" />
    <!-- 圆角半径是高度的一般就是一个圆弧了 -->
    <corners android:bottomLeftRadius="25dp"
        android:bottomRightRadius="25dp"
        android:topLeftRadius="25dp"
        android:topRightRadius="0dp" />
    <padding
    android:bottom="0dp"
    android:left="0dp"
    android:right="0dp"
    android:top="0dp" />
</shape>
<!--<shape xmlns:android="http://schemas.android.com/apk/res/android"-->
    <!--android:shape="rectangle">-->
    <!--&lt;!&ndash; 填充的颜色 &ndash;&gt;-->
    <!--<solid android:color="#00FF00" />-->
    <!--&lt;!&ndash; 设置按钮的四个角为弧形 &ndash;&gt;-->
    <!--&lt;!&ndash; android:radius 弧形的半径 &ndash;&gt;-->
    <!--<corners android:radius="80dip" />-->
    <!--&lt;!&ndash; padding：Button里面的文字与Button边界的间隔 &ndash;&gt;-->
    <!--<padding-->
        <!--android:bottom="2dp"-->
        <!--android:left="10dp"-->
        <!--android:right="10dp"-->
        <!--android:top="2dp" />-->
    <!--&lt;!&ndash;<background android:color="#F7F7F7"/>&ndash;&gt;-->
<!--</shape>-->