ListView 去掉分隔线

来源:互联网 发布:windows ftp服务器 编辑:程序博客网 时间:2024/05/01 13:24
  1. <ListView android:id="@id/android:list"  
  2.           android:layout_width="fill_parent"   
  3.           android:layout_height="wrap_content"  
  4.           android:layout_marginTop="150dip"  
  5.           android:divider="#00000000"  
  6.           android:dividerHeight="0dip"  
  7.           android:listSelector="@android:color/transparent"   
  8.           android:layout_gravity="center_vertical"/>  
0 0