具有3层边框的Android Drawable Shape

时间:2019-04-15 17:43:33

标签: android drawable

enter image description here enter image description here

嗨,我正在尝试向具有黄色边框的视图添加边框,但在主边框的两侧也都有黑色边框。

任何想法

1 个答案:

答案 0 :(得分:1)

尝试使用这种可绘制的布局,在顶部和底部设置边框

withFilter

尝试左右边框

<?xml version="1.0" encoding="utf-8"?>
<layer-list 
xmlns:android="http://schemas.android.com/apk/res/android">
<item>
    <shape android:shape="rectangle">
        <stroke
            android:width="2dp"
            android:color="#ffff00" />
        <solid android:color="#000000" />
    </shape>
</item>

<item
    android:bottom="2dp"
    android:top="2dp">
    <shape android:shape="rectangle">
        <stroke
            android:width="2dp"
            android:color="#000000" />
    </shape>
</item>

</layer-list>