Android - 操纵滚动视图
我想做的就是滚动到特定位置。 我发现这个方法将滚动视图(水平)滚动到最右边:
scrollView.fullScroll(ScrollView.FOCUS_RIGHT);
我希望能够滚动到最右边负10px,如何实现这一点?无论如何操纵滚动视图滚动到特定位置?
确实需要这个,先谢谢了!
all I want to do is to scroll to a specific position.
I found this method which scrolls the scrollview (horizontal) to the fullest right:
scrollView.fullScroll(ScrollView.FOCUS_RIGHT);
I want to be able to scroll to the fullest right minus 10px, how can achieve this? Anyway to manipulate scrollview to scroll to specific position?
Really need this, thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 ScrollView.scrollTo(Xpos,Ypos) 滚动到特定位置,或使用 ScrollView.scrollBy(xPos, Ypos) 滚动特定
距离视图结束 - 10px 你可以写
工作:
不工作:
You can use ScrollView.scrollTo(Xpos,Ypos) to scroll to a specific location or ScrollView.scrollBy(xPos, Ypos) to scroll by a specific distance
To scroll to the end of the view - 10px you can write
working:
not working:
你可以尝试这样的事情:
You could try something like this: