android 顺手记 listview的拖动条

android 随手记 listview的拖动条1.去滑动到顶点和底边时的黑色阴影[html] view plaincopyandroid:fadingE

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" />