编辑
保存ListView滚动位置
本文访问次数:0

来自StackOverflow上的解决方法

// save index and top position
int index = mList.getFirstVisiblePosition();
View item = mList.getChildAt(0);
int top = (item == null) ? 0 : (item.getTop() - mList.getPaddingTop());

// restore index and top position
mList.setSelectionFromTop(index, top);

需要输入验证码才能留言

没有任何评论