来自Fragments的`onViewStateRestored`如何工作?

时间:2013-07-22 15:59:18

标签: android android-fragments fragment viewstate restore

我真的很困惑片段的内部状态。 如果另一个Fragment应该显示,我有一个Activity只能同时保存一个Fragment并替换它。如果调用活动onSaveInstanceState(在我的情况下未调用),则文档onSaveInstanceState被称为 ONLY

如果我停止我的片段,我会将自己的状态存储在一个Singleton中(是的,我知道我也讨厌Singletons,但这不是我的想法)。 所以我必须重新创建整个ViewHirarchy,创建新视图(使用关键字new),恢复其状态并在onCreateView中返回它们。 我在这个View中也有一个Checkbox,我明确地从 NOT 中存储它的状态。

然而,FragmentManager想要“智能”并使用我从未创建过的Bundle调用onViewStateRestored,并“恢复”旧CheckBox的状态并将其应用于我的新的CheckBox。这引发了很多问题:

我可以从onViewStateRestored控制捆绑包吗?

FragmentManager如何获取(可能是垃圾收集的)CheckBox的状态并将其应用于新的CheckBox?

为什么它只保存Checkbox的状态(不是TextViews?)

总结一下:onViewStateRestored如何运作?

注意我正在使用Fragmentv4,所以没有API> onViewStateRestored

需要17

1 个答案:

答案 0 :(得分:21)

好吧,有时片段会让人感到有些困惑,但过了一段时间你会习惯他们,并且知道他们毕竟是你的朋友。

如果在片段的onCreate()方法中,则执行:setRetainInstance(true);您的观点的可见状态将被保留,否则它将不会。

假设一个名为" f" F类的生命周期如下: - 在实例化/附加/显示它时,这些是按以下顺序调用的f方法:

F.newInstance();
F();
F.onCreate();
F.onCreateView();
F.onViewStateRestored;
F.onResume();

此时,您的片段将在屏幕上显示。 假设设备已旋转,因此必须保留片段信息,这是旋转触发的事件流:

F.onSaveInstanceState(); //save your info, before the fragment is destroyed, HERE YOU CAN CONTROL THE SAVED BUNDLE, CHECK EXAMPLE BELLOW.
F.onDestroyView(); //destroy any extra allocations your have made
//here starts f's restore process
F.onCreateView(); //f's view will be recreated
F.onViewStateRestored(); //load your info and restore the state of f's view
F.onResume(); //this method is called when your fragment is restoring its focus, sometimes you will need to insert some code here.


//store the information using the correct types, according to your variables.
@Override
public void onSaveInstanceState(Bundle outState) {
    super.onSaveInstanceState(outState);
    outState.putSerializable("foo", this.foo);
    outState.putBoolean("bar", true);
}

@Override
public void onViewStateRestored(Bundle inState) {
    super.onViewStateRestored(inState);
    if(inState!=null) {
        if (inState.getBoolean("bar", false)) {
            this.foo = (ArrayList<HashMap<String, Double>>) inState.getSerializable("foo");
        }
    }

}