Android中的分割線

hahadelphi發表於2021-09-09

關於android的分割線的建立一共有三種方式

1.使用自定義View

<View

android:layout_width=“match_parent"
android:layout_height=“1dp"
android:background=”#000000”/>
這種方式是最簡單的建立方法,但封裝度不好.不利於多次被複用.

2.使用ImageView

<ImageView

android:layout_width=“match_parent"
android:layout_height=“0.5dp"
android:background=”@color/colorAccent”/>
這種方式使用的較多

3.自定義xml

<?xml version="1.0" encoding="utf-8"?>
<solid android:color="@color/colorAccent"/>
<size android:height="1dp"/>
這種方式增加了複用度,一般可以重複使用,封裝的較好.也比較方便,使用時,一般在垂直佈局中設定,水平佈局中不能顯示

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/2471/viewspace-2825976/,如需轉載,請註明出處,否則將追究法律責任。

相關文章