在 Android 中以编程方式从 ScrollView 中删除滚动条
如何以编程方式从 ScrollView 中删除滚动条?
setScrollBarStyle()
仅更改滚动条的样式。
我想以编程方式访问 xml 属性 android:scrollbars
。有什么办法可以做到这一点吗?
android:scrollbars
定义滚动时应显示或不显示哪些滚动条。
How can I remove the scroll bar from a ScrollView programmatically?
setScrollBarStyle()
only changes only the style of the scrollbar.
I want to access the xml attribute android:scrollbars
programmatically. Is there any way to do that?
android:scrollbars
Defines which scrollbars should be displayed on scrolling or not.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
以下两个方法调用将删除滚动视图中的滚动条:
The following two method calls will remove the scrollbars in your scrollview:
在 java 中添加以下代码:
在 xml 中将以下属性添加到您的
ScrollView
中:In java add this code:
In xml add following attribute to your
ScrollView
: