Android隐藏listview滚动条?
有没有办法在ListView
中隐藏滚动条。我知道 ScrollView
是可能的,但找不到 ListView
滚动条的方法。有什么想法吗?
Is there a way to hide scrollbar in ListView
. I know it's possible for ScrollView
but can't find a way for ListView
scrollbar. Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
尝试在布局 xml 文件中键入此内容
教程在这里。
http://developer.android.com/reference/android/view /View.html#attr_android:滚动条
Try to type this in layout xml file
Tutorial is here.
http://developer.android.com/reference/android/view/View.html#attr_android:scrollbars
如果您想以编程方式禁用\启用滚动条,您需要使用
View.setVericalScrollbarEnabled(boolean) - 禁用\启用垂直滚动条。
View.setHorizontalScrollBarEnabled(boolean) - 禁用\启用水平< /strong> 滚动条。
If you want to disable \ enable scrollbars programmatically you need use
View.setVericalScrollbarEnabled(boolean) - disable \ enable vertical scrollbars.
View.setHorizontalScrollBarEnabled(boolean) - disable \ enable horizontal scrollbars.
这是您应该在
ListView
上使用的属性。一切顺利。android:scrollbars="none"
This is the property you should use on your
ListView
. All the best.android:scrollbars="none"
还要确保禁用快速滚动:
谢谢,
拉胡尔
Also make sure that fast scrolling disabled:
Thanks,
Rahul
通常两者都会使用
Usually using both of them