答案 0 :(得分:1)
您可以使用ArcLayout库。
向build.gradle(应用程序级别)添加依赖项
编译'com.github.florent37:arclayout:1.0.3'
将ArcLayout添加到您的xml中,它可以在您的情况下在内部或外部创建曲线,因此请使用此app:arc_cropDirection="cropInside"
属性。
<com.github.florent37.arclayout.ArcLayout
android:layout_width="match_parent"
android:layout_height="200dp"
app:arc_cropDirection="cropInside"
app:arc_height="90dp"
app:arc_padding="30dp"
android:elevation="5dp"
>
<!--Your layout will be here to make toolbar -->