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