我正在尝试使用 Android 形状可绘制对象创建按钮背景。我试图在一个矩形上有两条曲线,顶部的一条向后。背景也有 3dp 的笔触,这使我无法使用图层列表。这是我希望创造的:
<?xml version="1.0" encoding="utf-8"?>
<shape
xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" >
<corners android:radius="1dp" android:topLeftRadius="-30dp" android:topRightRadius="0dp" android:bottomLeftRadius="30dp" android:bottomRightRadius="0dp"/>
<size
android:width="30dp"
android:height="30dp" />
<solid
android:color="@color/very_light_grey"
/>
<stroke
android:width="3dp"
android:color="@color/grey"
/>
</shape>
这对 Android 形状可绘制对象有可能吗?