我正在使用MergeAdapter(来自Mark Murphy的优秀系列项目)。您将它与ListView一起使用。我正在尝试在刷新时重建适配器的内容(而不是刷新“就地”并调用notifyDataSetChange())。
我想得到listview的y-scroll值,这样我可以在重建列表后重置为该值。这似乎不可能吗?
由于
答案 0 :(得分:1)
为列表视图实现OnScrollListener。
@Override
public void onScroll(AbsListView absListView, int firstVisible, int visibleCount, int totalCount) {
//firstvisible is your first visible item in the list
}