1. 程式人生 > >自定義ListView中的分割線

自定義ListView中的分割線

ListView中每個Item項之間都有分割線,設定android:footerDividersEnabled表示是否顯示分割線,此屬性預設為true。

1.不顯示分割線只要在ListView控制元件中新增android:footerDividersEnabled="false"即可。

<ListView
	android:id="@+id/local_groups_list"
	android:layout_width="match_parent"
	android:layout_height="wrap_content"
	android:footerDividersEnabled="false" />

2.改變ListView的分割線顏色和寬度,需要在佈局中定義android:dividerandroid:dividerHeight屬性。

<ListView
	android:id="@+id/local_groups_list"
	android:layout_width="match_parent"
	android:layout_height="wrap_content"
	android:divider="@color/divider_color"
	android:dividerHeight="1px" />