android – 在bundle savedInstanceState中保存ArrayList

前端之家收集整理的这篇文章主要介绍了android – 在bundle savedInstanceState中保存ArrayList前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
ArrayList是在类级别定义的.
这些是我保存的实例方法
@Override
protected void onSaveInstanceState(Bundle outState) {
    super.onSaveInstanceState(outState);
    outState.putStringArrayList("savedList",list);
}


@Override
protected void onRestoreInstanceState(Bundle savedInstanceState) {
    super.onRestoreInstanceState(savedInstanceState);
    list=savedInstanceState.getStringArrayList("savedList");
}

但是,当我改变方向时,ArrayList是空白的

解决方法

当您使用onRestoreInstanceState()恢复状态时,它会在onStart()之后调用,因此您在定义适配器后使用保存的状态更新列表.您最好的选择是恢复onCreate()中的列表,就像在onRestoreInstanceState()上一样.您还可以重新定义适配器或调用notifyDataSetChanged().
原文链接:https://www.f2er.com/android/309564.html

猜你在找的Android相关文章