滚动视图与选定的页面
我有一个滚动视图,尺寸宽度=320x10,高度=460。 我在启用分页的滚动视图中添加 10 个宽度=320 和高度=460 的图像。 现在我可以通过滚动将第 1 张图像滚动到第 10 张图像。
当scrollView显示时,总是从第一页开始显示。 我想最初显示滚动视图的任何随机页面,以便我可以从最初滚动上一页和下一页。 我怎样才能做到这一点?
I have a scrollViewWith size width=320x10 and height=460.
I add 10 images of size width=320 and height=460 in scrollview with paging enabled.
Now I can scroll the from 1st image to 10th image by scrolling.
when scrollView show, it is always showed from the 1st page.
I want to show initially any random page of the scrollView, such that i can scroll previous page and next page from initially.
How can i do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您只需将 y 变量设置为您想要滚动到的点即可。例如:
应该滚动到第三张图像。
You should just need to set the y variable to the point where you would like to scroll to. For example:
Should scroll to your 3rd image.