1. 程式人生 > >android用shape畫一條橫線

android用shape畫一條橫線

在drawable目錄下新建shape

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<!-- This is the line -->
    <!-- left 和right是左右邊距 -->
<item
android:left="1dp"
android:right="1dp">
        <shape>
            <solid 
android:color="@color/colorPrimaryDark" /> </shape> </item> <!--bottom是橫線高度 --> <item android:bottom="2dp"> <shape> <solid android:color="@color/white" /> </shape> </item> </layer-list>

效果如下


使用方法 和正常使用drawble樣式一樣。