15 lines
544 B
XML
15 lines
544 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<shape xmlns:android="http://schemas.android.com/apk/res/android" >
|
|
<solid android:color="#802f74ff" />
|
|
<corners android:topLeftRadius="0dp"
|
|
android:topRightRadius="0dp"
|
|
android:bottomRightRadius="1dp"
|
|
android:bottomLeftRadius="1dp"/>
|
|
<!-- 这是半透明,还可以设置全透明,那就是白色边框的效果了 -->
|
|
|
|
<stroke
|
|
android:dashGap="0dp"
|
|
android:width="1dp"
|
|
android:color="@color/blue_text" />
|
|
</shape>
|