Android-ListView几个比较特别的属性
1)android:stackFromBottom="true"
设置你做好的列表显示在列表的最下面,值为true和false.
2)android:transcriptMode="alwaysScroll"
设置的控件transcriptMode属性可以将Android平台的控件(支持ScrollBar)自动滑动到最底部.
3)android:cacheColorHint
如果只是换背景的颜色的话,可以直接指定android:cacheColorHint为你所要的颜色,如果你是用图片做背景的话,那也只要将android:cacheColorHint指定为透明(#00000000)就可以了.
4)android:divider="@drawable/list_driver"
设置显示分割线图形,如果不想显示分割线则只要设置为android:divider="@drawable/@null"就可以了,分割线可以自定义颜色、或图片.android:dividerheight="6px"设置分割线高度像素.
5)android:scrollbars="none"
与setVerticalScrollBarEnabled(true);的效果一样,不活动的时候隐藏,活动的时候也隐藏.
6)android:fadeScrollbars="true"
配置ListView布局的时候,设置这个属性为true就可以实现滚动条的自动隐藏和显示.
7)android:fadingEdge="none"
设置上边和下边是否有黑色的阴影.
<?xml version="1.0" encoding="utf-8" ?> <selector xmlns:android="http://schemas.android.com/apk/res/android"> <!-- 没有焦点时的背景图片 --> <item android:state_window_focused="false" android:drawable="@drawable/pic1" /> <!-- 非触摸模式下获得焦点并单击时的背景图片 --> <item android:state_focused="true" android:state_pressed="true" android:drawable= "@drawable/pic2" /> <!-- 触摸模式下单击时的背景图片 --> <item android:state_focused="false" android:state_pressed="true" android:drawable="@drawable/pic3" /> <!--选中时的图片背景 --> <item android:state_selected="true" android:drawable="@drawable/pic4" /> <!--获得焦点时的图片背景 --> <item android:state_focused="true" android:drawable="@drawable/pic5" /> </selector>
相关推荐
huha 2020-10-16
xfcyhades 2020-11-20
sgafdsg 2020-11-04
Michael 2020-11-03
fengyeezju 2020-10-14
ziyexiaoxiao 2020-10-14
业余架构师 2020-10-09
OuNuo0 2020-09-29
moses 2020-09-22
Angelia 2020-09-11
qinxu 2020-09-10
刘炳昭 2020-09-10
Nostalgiachild 2020-09-07
Nostalgiachild 2020-08-17
leavesC 2020-08-14
一青年 2020-08-13
AndroidAiStudy 2020-08-07
ydc0 2020-07-30
绿豆饼 2020-07-28