12345678910111213141516171819 |
- <?xml version="1.0" encoding="utf-8"?>
- <shape xmlns:android="http://schemas.android.com/apk/res/android"
- android:shape="rectangle" >
- <!-- 灰色边框圆角矩形 -->
- <stroke
- android:width="1dip"
- android:color="#a9aba9" />
- <solid android:color="#00a9aba9" />
- <corners
- android:bottomLeftRadius="@dimen/px20dp"
- android:bottomRightRadius="@dimen/px20dp"
- android:topLeftRadius="@dimen/px20dp"
- android:topRightRadius="@dimen/px20dp" />
- </shape>
|