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