作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我从 Sq-lite db 填充 ListView 。
现在我的问题是,当我单击 ListView 项目以转到下一页,然后返回 ListView 时,我希望列表滚动到与之前相同的点。知道如何执行此操作。
这是我在
中的list-view
方法
onCreate()
private void populateList() {
descArray.clear();
List<All_Post> allDesc = dbhelper.getAllDescriptions();
for (All_Post all_Post : allDesc)
{
String strInspectorname = all_Post.getStringInspectorname();
Log.e("strInspectorname "," = " + strInspectorname);
descArray.add(all_Post);
}
if (adapter == null)
{
adapter = new AllPostAdapter(this, R.layout.allpostlist, descArray);
listView.setAdapter(adapter);
}
else if (adapter != null) {
adapter.notifyDataSetChanged();
adapter = new AllPostAdapter(this, R.layout.allpostlist, descArray);
listView.setAdapter(adapter);
}
}
我试过这个链接 Maintain/Save/Restore scroll position when returning to a ListView , listView 总是在最后一个位置。
最佳答案
按照以下步骤,
4. 对于直接滚动:
getListView().setSelection(YOUR_POSITION);
为了平滑滚动:
getListView().smoothScrollToPosition(YOUR_POSITION);
希望对你有所帮助。
关于android - 如何在回到上一个ListView的同时保持ListView的位置?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34126754/
我是一名优秀的程序员,十分优秀!