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="#f28c37" />
-
- <solid android:color="#ffffff" />
- <corners
- android:bottomLeftRadius="2dip"
- android:bottomRightRadius="2dip"
- android:topLeftRadius="2dip"
- android:topRightRadius="2dip" />
- </shape>
|