android 改变listview的分割线的颜色

来源:互联网 发布:百度云管家 mac 编辑:程序博客网 时间:2024/05/17 10:05

改变ListView的分割线颜色和宽度,需要在布局中定义android:dividerandroid:dividerHeight属性。

[html] view plaincopy
  1. <ListView  
  2.     android:id="@+id/local_groups_list"  
  3.     android:layout_width="match_parent"  
  4.     android:layout_height="wrap_content"  
  5.     android:divider="@color/divider_color"  
  6.     android:dividerHeight="1px" />  
0 0