使用xml将笔画添加到drawable中

时间:2016-10-04 08:42:59

标签: android xml border drawable

我为XML按钮创建了一个背景,这就是我现在所拥有的: enter image description here

我想在白色边缘加上这样的边框: enter image description here

这是我的代码:

    <?xml version="1.0" encoding="utf-8"?>
    <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="@color/yellowLight"/>
                <stroke
                    android:width="4dp"
                    android:color="@color/yellowDark" />
                <corners android:radius="20dp" />
            </shape>
        </item>

        <item
            android:bottom="60dp"
            android:drawable="@drawable/white_plus"
            android:left="60dp"
            android:right="60dp"
            android:top="60dp">

            <shape xmlns:android="http://schemas.android.com/apk/res/android">
                <solid android:color="@android:color/transparent" />
                <stroke
                    android:width="50dp"
                    android:color="@color/yellowDark" />
            </shape>
        </item>
    </layer-list>

在代码的底部,我尝试实现中风,但这不起作用,谢谢你的帮助。

0 个答案:

没有答案