12345678910111213141516171819 |
- <?xml version="1.0" encoding="utf-8"?>
- <shape xmlns:android="http://schemas.android.com/apk/res/android"
- android:shape="rectangle" >
- <solid
- android:color="#FFDDDDDD"
- />
- <!--<stroke
- android:width="10dp"
- android:color="#FF0000FF" /> -->
- <corners
- android:bottomLeftRadius="14dp"
- android:bottomRightRadius="14dp"
- android:topLeftRadius="14dp"
- android:topRightRadius="14dp" />
- </shape>
|