shape_btn_green.xml
374 Bytes
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<corners android:radius="50dp" />
<!-- 填充的颜色 -->
<solid android:color="@color/btn_green" />
<!--设置渐变-->
<!--设置渐变-->
<gradient
android:endColor="@color/btn_green"
android:startColor="#49EE1D" />
</shape>