现在的位置: 首页 > 综合 > 正文

android 随手记 listview的拖动条

2018年09月15日 ⁄ 综合 ⁄ 共 362字 ⁄ 字号 评论关闭

1.去滑动到顶点和底边时的黑色阴影
[html] view plaincopy
android:fadingEdge="none"  

2.去拖动时默认黑色底色
[html] view plaincopy
android:cacheColorHint=“#00000000”  

3.去选中时的黄色底色
[html] view plaincopy

android:listSelector="#00000000" 

4,添加右侧拖动条

<ListView android:id="@+id/listView"

android:layout_width="fill_parent"
android:layout_height="fill_parent"

android:fastScrollEnabled="true"
android:focusable="true" />

抱歉!评论已关闭.