<shape xmlns:android="http://schemas.android.com/apk/res/android"> 
 | 
  
 | 
    <!-- 边缘线的宽度和颜色 --> 
 | 
    <stroke 
 | 
        android:width="0px" 
 | 
        android:color="@color/edite_bg" /> 
 | 
    <!-- 
 | 
    中间渐变,角度0从左往右,正值为逆时针,270度为从上到下 
 | 
    <gradient 
 | 
        android:angle="270" 
 | 
        android:centerColor="#e9e9e9" 
 | 
        android:endColor="#d8d8d8" 
 | 
        android:startColor="#ffffff" /> 
 | 
  
 | 
  
 | 
    --> 
 | 
    <!-- 中间渐变,角度0从左往右,正值为逆时针,270度为从上到下 --> 
 | 
    <gradient 
 | 
        android:angle="270" 
 | 
        android:centerColor="@color/edite_bg" 
 | 
        android:endColor="@color/edite_bg" 
 | 
        android:startColor="@color/edite_bg" /> 
 | 
    <!-- 设置四个角的角度 --> 
 | 
    <corners 
 | 
        android:bottomLeftRadius="15px" 
 | 
        android:bottomRightRadius="15px" 
 | 
        android:topLeftRadius="15px" 
 | 
        android:topRightRadius="15px" /> 
 | 
    <!-- 设置padding --> 
 | 
  
 | 
</shape> 
 |