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