如何让listview的滚动条一直可见
我希望我的滚动条始终可见,只有垂直滚动条。
我用谷歌搜索这个标签,发现了这个标签android:scrollbarFadeDuration="0"
,但是当你有滚动视图时,这个效果很好,但是当我将其添加为我的ListView
中的标签时然后 eclipse 它告诉我这个标签在 ListView
组件中不存在。
有没有办法让ListView
小部件的滚动条始终可见?
编辑1: 这些是我的所有标签和列表视图的值
android:drawSelectorOnTop="false" android:layout_height="fill_parent"
android:drawingCacheQuality="high" android:layout_width="fill_parent"
android:id="@android:id/list" android:clickable="false"
android:scrollbarAlwaysDrawVerticalTrack="true" android:fastScrollEnabled="true" android:scrollbars="vertical
滚动显示,但仅当我滚动时,几秒钟后它就消失了
I want my scrollbars to be visible all the time, well only the vertical scroll bar.
I google this and I found this tag android:scrollbarFadeDuration="0"
but this works fine when you have a scroll view but when I add this as a tag in my ListView
then eclipse it telling me that this tag doesn't exist in the ListView
-component.
Is there any way to make the scroll bars of the ListView
widget to be visible all the time ?
Edit1:
these are all my tags and values of the listview
android:drawSelectorOnTop="false" android:layout_height="fill_parent"
android:drawingCacheQuality="high" android:layout_width="fill_parent"
android:id="@android:id/list" android:clickable="false"
android:scrollbarAlwaysDrawVerticalTrack="true" android:fastScrollEnabled="true" android:scrollbars="vertical
The scroll is shown but only when I am scrolling and after few seconds it is gone
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
设置 android:fadeScrollbars="false"
Set android:fadeScrollbars="false"
将为
ListView 启用 android:scrollbarAlwaysDrawVerticalTrack
能做到这一点吗?Will enabling android:scrollbarAlwaysDrawVerticalTrack for the
ListView
do the trick?