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