android scrollView 最大滚动
有没有办法为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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用如下代码:
如果用户尝试滚动超过您决定的限制,则禁用滚动。
编辑:这里,限制是输入 int 的坐标
You can use some code like this:
To disable scrolling if user tries to scroll further than limit that you decided.
Edit: here, limit is coordinates typed int