更改适配器上的数据后,如何将列表视图的滚动条返回到顶部?
我使用带有 2 个 ListView 的 ViewFlipper:一个用于类别,一个用于数据。 每次用户选择一个类别时,我都会更新第二个列表视图的数据(清除它并添加新数据),调用notifydatachanged,然后调用ViewFlipper showNext()。
问题是,当我在列表中向下滚动,然后返回(showprev)选择另一个类别,然后再次翻转到更新的列表时 - 滚动条是我离开他的位置,在列表视图的中间,并且不在上面。
我怎样才能让它恢复到最佳状态呢?
I'm using a ViewFlipper with 2 ListViews: one for categories, and one for data.
Every time user picks a category - i update the 2nd listview's data (clear it and add new data), call notifydatachanged, and call the ViewFlipper showNext().
The problem is that when i scroll down in a list, and than go back (showprev) to pick another category, and again flip to the updated list - the scrollbar is where i've left him, in the middle of the listview, and not on top.
how can i take it back to be uppest it can?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用以下方法将滚动条设置为始终位于顶部:
.setSelection(0)
You can set the scrollbar to always on top by using:
.setSelection(0)