16 lines
466 B
XML
16 lines
466 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<shape xmlns:android="http://schemas.android.com/apk/res/android">
|
|
<!-- 内部颜色 -->
|
|
<solid android:color="@color/default_gray" />
|
|
<!-- 圆角的幅度 -->
|
|
<corners
|
|
android:bottomLeftRadius="32dp"
|
|
android:bottomRightRadius="32dp"
|
|
android:topLeftRadius="32dp"
|
|
android:topRightRadius="32dp" />
|
|
|
|
<padding
|
|
android:left="12dp"
|
|
android:right="12dp" />
|
|
|
|
</shape> |