活动开始时隐藏滚动条

发布于 2024-11-08 19:19:24 字数 139 浏览 5 评论 0原文

我遇到了一个不知道如何解决的问题。

问题是我想在活动开始时隐藏滚动条。如果您查看它们,当您启动 Activity 时,它们是可见的,然后它们会淡出,直到您开始滚动。没关系。但我也不希望他们显示活动何时启动。

你知道这是否可能吗?谢谢

I've come with an issue that don't know how to solve.

The problem is that I want to hide the scrollbars when the activity starts. If you look at them, when you launch the activity they're visible and then they fade out until you begin scrolling. That's ok. But I don't want them to show when the activity is launched either.

Do you know if this is possible? Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

一直在等你来 2024-11-15 19:19:24

你想让它们被隐藏吗?或当您启动活动时动画(淡入)?

你可以用它来动画滚动视图:

AlphaAnimation fadeInScroll = new AlphaAnimation(0.0f,1.0f);
fadeInScroll.setDuration(1200);
fadeInScroll.setFillAfter(true);
myScrollView.startAnimation(fadeInScroll);

如果你想隐藏它们,使用:

myScrollView.setVisibility(View.GONE);

希望它有帮助:)

you want them to be hidden ?? or animated (fadeIn ) when you launch your activity ?

you can use this to animate ScrollViews :

AlphaAnimation fadeInScroll = new AlphaAnimation(0.0f,1.0f);
fadeInScroll.setDuration(1200);
fadeInScroll.setFillAfter(true);
myScrollView.startAnimation(fadeInScroll);

And if you want to Hide them , use :

myScrollView.setVisibility(View.GONE);

Hope it helps :)

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