Android列表视图,显示列表的用户末尾,然后自动滚动到顶部
我在布局中有列表视图,我希望用户知道有更多单元格可供查看和滚动。默认情况下,列表视图没有可见的滚动条。
我得到的一个建议是从末尾开始显示列表,然后自动向上滚动到顶部。这将向用户表明有一些内容可以滚动。
在 Android 上这将如何完成?
I have Listviews within layouts and I want the user to know that there are more cells to see, and to scroll. The listviews do not have a scrollbar visible by default.
One suggestion I got was to start displaying the list from the end of it and then auto scroll upwards to the top. This would show the user that there is something to scroll.
How would this be done on Android?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 ListView 类中的函数:
或者
或者如果您想一项一项地滚动,您可以使用以下函数:
You could use the functions which are part of the ListView class:
or
Or if you want to scroll one by one you could use functions like: