18 lines
623 B
XML
18 lines
623 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="#33162136" />
|
|
<!-- 圆角的幅度 -->
|
|
<corners
|
|
android:bottomLeftRadius="@dimen/dp_8"
|
|
android:bottomRightRadius="@dimen/dp_8"
|
|
android:topLeftRadius="@dimen/dp_8"
|
|
android:topRightRadius="@dimen/dp_8" />
|
|
|
|
<!-- <padding-->
|
|
<!-- android:bottom="4dp"-->
|
|
<!-- android:left="20dp"-->
|
|
<!-- android:right="20dp"-->
|
|
<!-- android:top="4dp" />-->
|
|
</shape> |