1. 程式人生 > >android 用shape畫矩形邊框(可以只畫任意一個邊)

android 用shape畫矩形邊框(可以只畫任意一個邊)

記錄一下一些比較基礎使用的東西,

在drawable新建xml檔案,

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
    <item>
        <shape>
            <solid android:color="#e5e5e5" />//邊框顏色
        </shape>
    </item>
    <!--    想保留哪一邊就設定哪一邊邊框,列如只有下邊框:bottom="0.7dp",相應的有上top="",left="",right=""    -->
    <item android:bottom="0.7dp">
        <shape>
            <solid android:color="@color/color_white" />//整個框背景顏色
        </shape>
    </item>
</layer-list>