15 lines
396 B
XML
15 lines
396 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:shape="rectangle">
|
|
<!-- 只设置顶部的圆角 -->
|
|
<corners
|
|
android:bottomLeftRadius="0dp"
|
|
android:bottomRightRadius="0dp"
|
|
android:topLeftRadius="24dp"
|
|
android:topRightRadius="24dp" />
|
|
|
|
<solid android:color="#B2000000" />
|
|
|
|
</shape>
|