android 随手记 listview的拖动条
1.去滑动到顶点和底边时的黑色阴影[html]android:fadingEdge="none"2.去拖动时默认黑色底色[html]android:cacheColorHint=“#00000000”3.去选中时的黄色底色[html]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" />
补充:移动开发 , Android ,