当前位置: 代码迷 >> Android >> android 顺手记 listview的拖动条
  详细解决方案

android 顺手记 listview的拖动条

热度:18   发布时间:2016-04-28 08:01:51.0
android 随手记 listview的拖动条
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" />


  相关解决方案