LinearLayout显示分割线(Divider)

Android LinearLayout显示分割线有两种方式:

1.使用一个宽/高为1dp的View:


    android:layout_width="match_parent"
    android:layout_height="1dp"
    android:background="#FF0000" />

2.直接使用LinearLayout的divider属性:


先做一个 Drawable:

xml version="1.0" encoding="utf-8"?>
 xmlns:android="http://schemas.android.com/apk/res/android" >
     android:height="1dp"/>
     android:color="#FF0000"/>
然后像这样使用:


 xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:divider="@drawable/divider"
    android:orientation="vertical"
    android:showDividers="middle" >

后一种方法更推荐一些。

你可能感兴趣的:(Android开发)