<?xml version="1.0" encoding="utf-8"?>

<shape xmlns:android="http://schemas.android.com/apk/res/android">

    <corners  android:topLeftRadius="5dip"
        android:topRightRadius="5dip"
        android:bottomLeftRadius="0dip"
        android:bottomRightRadius="0dip"/><!-- 圆角的半径  也可以统一设置半径 android:radius="9dip"-->

    <!-- todo 组件化之后,心理咨询用RGB(63,202,106)-->
    <solid android:color="#1da1f2" /> <!-- 没有描边的中间部分 --><!--solid 与  gradient 只能显示在代码最后那个-->
</shape>