android ListView常用xml属性

来源:互联网 发布:阿里云服务器入门 编辑:程序博客网 时间:2024/05/17 02:39

ListView xml 布局文件常用属性


<ListView
        android:id="@+id/lv_recommend"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:background="@color/white"
        android:cacheColorHint="#00000000"
        android:descendantFocusability="afterDescendants"
        android:divider="@color/divider_list"
        android:dividerHeight="1px"
        android:fastScrollEnabled="false" > 

 android:cacheColorHint 不设置时会出现黑底
android:listSelector   不设置时会出现默认的选中状态,按下黄色底
android:divider、android:dividerHeight  listview每项之间的间隔
android:fastScrollEnabled   是否启用快速滑动功能
android:descendantFocusability :

属性的值有三种:

        beforeDescendants:viewgroup会优先其子类控件而获取到焦点

        afterDescendants:viewgroup只有当其子类控件不需要获取焦点时才获取焦点

        blocksDescendants:viewgroup会覆盖子类控件而直接获得焦点

一般用于listview 的item点击失效时


0 0
原创粉丝点击