如何在 android 中制作矩形的弯曲边缘
How to make curved edge in a rectangle shape in android
我试图在不使用图像作为背景的情况下实现这一点,希望在 xlm 可绘制中完成
使用这个
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid android:color="#FFFFFF" />
</shape>
</item>
<item
android:bottom="0dp"
android:left="-200dp"
android:right="-200dp"
android:top="-340dp">
<shape
android:shape="oval">
<solid android:color="@color/dark_orange" />
</shape>
</item>
根据您的要求更改左右边距。这将改变曲线。
我试图在不使用图像作为背景的情况下实现这一点,希望在 xlm 可绘制中完成
使用这个
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid android:color="#FFFFFF" />
</shape>
</item>
<item
android:bottom="0dp"
android:left="-200dp"
android:right="-200dp"
android:top="-340dp">
<shape
android:shape="oval">
<solid android:color="@color/dark_orange" />
</shape>
</item>
根据您的要求更改左右边距。这将改变曲线。