18 lines
539 B
XML
18 lines
539 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<shape
|
|
xmlns:android="http://schemas.android.com/apk/res/android">
|
|
<!-- 内部颜色 -->
|
|
<solid
|
|
android:color="#FFFFF8" />
|
|
<!-- 边缘线条颜色 -->
|
|
<stroke
|
|
android:width="@dimen/PX2x"
|
|
android:color="#888787" />
|
|
<!-- 圆角的幅度 -->
|
|
<corners
|
|
android:topLeftRadius="@dimen/PX25x"
|
|
android:topRightRadius="@dimen/PX25x"
|
|
android:bottomLeftRadius="@dimen/PX25x"
|
|
android:bottomRightRadius="@dimen/PX25x" />
|
|
|
|
</shape> |