可以任意定义4个角的角度,还有描边功能。
- 引入第三方库
implementation 'me.codego.view:round-layout:1.0.1'
- 插入控件
<me.codego.view.RoundLayout
android:id="@+id/first_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#E6E6E6"
app:round_stroke_color="#f00"
app:round_stroke_width="2dp"
app:round_radius="10dp"
app:round_topLeftRadius="10dp"
app:round_topRightRadius="10dp"
app:round_bottomLeftRadius="10dp"
app:round_bottomRightRadius="10dp">
</me.codego.view.RoundLayout>