标签:
ListView相关功能
1.android:fastScrollEnabled="true" ListView出现快速滚动的按钮,数据不多的时候,不会出现,只要数据足够多,会自动出现
2.android:drawSelectorOnTop
When set to true, the selector will be drawn over the selected item. Otherwise the selector is drawn behind the selected item. The default value is false.
android:drawSelectorOnTop="true" 点击某一条记录,颜色会显示在最上面,记录上的文字被遮住,所以点击文字不放,文字就看不到
android:drawSelectorOnTop="false" 点击某条记录不放,颜色会在记录的后面,成为背景色,但是记录内容的文字是可见的
标签:
原文地址:http://www.cnblogs.com/androidstudy/p/5477255.html