0%

圆角shape

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<!-- 填充的颜色 -->
<solid android:color="@color/bottom_controller_color" />

<!-- 边框的颜色和粗细 -->
<stroke
android:width="1dp"
android:color="@color/bottom_controller_color"
/>

<corners
android:bottomLeftRadius="0dp"
android:bottomRightRadius="0dp"
android:radius="20dp"
android:topLeftRadius="0dp"
android:topRightRadius="18dp"
/>

</shape>