<?xml version="1.0" encoding="utf-8"?>
|
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
android:shape="rectangle" >
|
|
<!-- 高度40 -->
|
<size
|
android:height="60dp"
|
android:width="60dp" />
|
<!-- 圆角弧度 20 -->
|
<corners android:radius="30dp" />
|
|
<!-- 变化率 -->
|
<gradient
|
android:endColor="#eeeeee"
|
android:startColor="#eeeeee" />
|
|
<stroke
|
android:width="1dp"
|
android:color="#BABABA" />
|
|
</shape>
|