<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" >
<!-- 指定圆角矩形的4个圆角的半径 -->
<corners
android:bottomLeftRadius="10dp"
android:bottomRightRadius="10dp"
android:topLeftRadius="10dp"
android:topRightRadius="10dp" />
<!-- solid为填充颜色,默认为黑色 -->
<solid android:color="#80858175" />
<!-- 指定边框线条的宽度和颜色 -->
<stroke
android:width="5dip"
android:color="#aea594" />
<!-- 指定使用渐变背景色,颜色从红色-绿色-蓝色, 使用sweep类型的渐变,左右横向排列,上下纵向排列,linear水平线性排列-->
<gradient
android:startColor="#f00"
android:centerColor="#0f0"
android:endColor="#00f"
android:type="linear" />
</shape>