19 lines
510 B
XML
19 lines
510 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="#4D000000" />
|
|
|
|
<!-- 圆角的幅度 -->
|
|
<corners
|
|
android:bottomLeftRadius="8dp"
|
|
android:bottomRightRadius="8dp"
|
|
android:topLeftRadius="8dp"
|
|
android:topRightRadius="8dp" />
|
|
|
|
<padding
|
|
android:bottom="4dp"
|
|
android:left="4dp"
|
|
android:right="4dp"
|
|
android:top="4dp" />
|
|
</shape> |