设置ListView分割线

<LinearLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content">
<ListView
        android:id="@+id/android:list"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:divider="#FFCC00"
        android:dividerHeight="4px"/>

</LinearLayout>

关键是这两句:

android:divider="#FFCC00"

android:dividerHeight="4px"

前一句是设置分割线的颜色,后一句是设置分割线高(即分割线的粗细)

 

转自:http://hi.baidu.com/huaxinchang/blog/item/8e646901c7190ac1267fb547.html

你可能感兴趣的:(ListView)