是否可以创建一个带有向上曲线的矩形绘图?

时间:2017-05-05 04:40:27

标签: android android-drawable android-shapedrawable

我正在尝试使用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>

Is this possible with Android shape drawables?

Android形状drawables可以实现吗?

0 个答案:

没有答案