11 lines
392 B
XML
11 lines
392 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:shape="rectangle">
|
|
<!-- 7%不透明度的白色-->
|
|
<solid android:color="#11FFFFFF" />
|
|
<corners
|
|
android:bottomLeftRadius="17dp"
|
|
android:bottomRightRadius="17dp"
|
|
android:topLeftRadius="17dp"
|
|
android:topRightRadius="17dp" />
|
|
</shape> |