检查片段中的 savedInstanceState 状态

checking savedInstanceState state in fragment

为什么我们不在片段的 onCreateView 回调中检查 savedInstanceState 而不是 onActivityCreated(推荐)? 根据片段生命周期中 onCreateView 回调后调用的片段 onActivityCreated 的生命周期。

如果你阅读这篇文章,它会清楚地解释你可以在 onDestroy 之前的任何时间调用 onSaveInstanceState。因此,为了回答您的问题,您也可以在 onCreateView 方法中调用该方法。

Google Developer Link - Fragment onSaveInstanceState