1. 程式人生 > >用 XML 自定義邊框效果(左邊框有顏色)

用 XML 自定義邊框效果(左邊框有顏色)

本來是讓UI切出來的圖片效果,專案完成後自己沒事又從網上搜了各種資料,記錄一下,方便又需求的人,也防止自己忘記.

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android"
            android:shape="rectangle">
    <item
        android:bottom="-4dp"
        android:right="-4dp"
        android:top="-4dp">
        
        <shape>
            <solid android:color="@color/white"/>
            <stroke
                android:width="4dp"
                android:color="@color/red"
                />
        </shape>
    </item>

</layer-list>

效果圖: