17 lines
506 B
XML
17 lines
506 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<shape xmlns:android="http://schemas.android.com/apk/res/android">
|
|
<!-- 内部颜色 -->
|
|
<solid android:color="#fdedbc" />
|
|
<!-- 圆角的幅度 -->
|
|
<corners
|
|
android:bottomLeftRadius="20dp"
|
|
android:bottomRightRadius="20dp"
|
|
android:topLeftRadius="20dp"
|
|
android:topRightRadius="20dp" />
|
|
|
|
<padding
|
|
android:top="4dp"
|
|
android:right="8dp"
|
|
android:left="8dp"
|
|
android:bottom="4dp" />
|
|
</shape> |