在 Android 中以编程方式从 ScrollView 中删除滚动条

发布于 2024-12-27 15:12:38 字数 220 浏览 1 评论 0原文

如何以编程方式从 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

内心荒芜 2025-01-03 15:12:38

以下两个方法调用将删除滚动视图中的滚动条:

view.setVerticalScrollBarEnabled(false);
view.setHorizontalScrollBarEnabled(false);

The following two method calls will remove the scrollbars in your scrollview:

view.setVerticalScrollBarEnabled(false);
view.setHorizontalScrollBarEnabled(false);
怎会甘心 2025-01-03 15:12:38

在 java 中添加以下代码:

myScrollView.setVerticalScrollBarEnabled(false);
myScrollView.setHorizontalScrollBarEnabled(false);

在 xml 中将以下属性添加到您的 ScrollView 中:

android:scrollbars="none"

In java add this code:

myScrollView.setVerticalScrollBarEnabled(false);
myScrollView.setHorizontalScrollBarEnabled(false);

In xml add following attribute to your ScrollView:

android:scrollbars="none"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文