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="#6355DC" />
-
- <solid android:color="#00a9aba9" />
- <corners
- android:bottomLeftRadius="@dimen/px20dp"
- android:bottomRightRadius="@dimen/px20dp"
- android:topLeftRadius="@dimen/px20dp"
- android:topRightRadius="@dimen/px20dp" />
- </shape>
|