我正在尝试使用Android形状drawables创建一个按钮背景。我试图在一个矩形上有两条曲线,顶部的那条是向后的。背景也有一个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形状drawables可以实现吗?