android scrollView 最大滚动

发布于 2024-12-03 04:01:01 字数 94 浏览 0 评论 0原文

有没有办法为scrollView添加滚动范围?我已经完成了一个屏幕,用户可以在其中拖动视图,我想限制将它们拖动到某些坐标的可能性,并根据视图中的对象数量在运行时修改这些坐标。

Is there a way to add a range of scrolling to a scrollView? I've done a screen where user can drag views and I want to limit the possibility of dragging them down to some coordinates and modify those coordinates at runtime according to the number of object from view.

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

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

发布评论

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

评论(1

最后的乘客 2024-12-10 04:01:01

您可以使用如下代码:

if(scrollView.scrollY() >= limit)
scrollView.setOnTouchListener(null);

如果用户尝试滚动超过您决定的限制,则禁用滚动。

编辑:这里,限制是输入 int 的坐标

You can use some code like this:

if(scrollView.scrollY() >= limit)
scrollView.setOnTouchListener(null);

To disable scrolling if user tries to scroll further than limit that you decided.

Edit: here, limit is coordinates typed int

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