从后台堆栈恢复片段时的savedInstanceState

时间:2012-06-20 01:22:51

标签: android android-fragments bundle back-stack

我可以在删除片段时使用savedInstanceState()来保存状态,然后在从后端堆栈弹出片段时恢复状态吗?当我从后面的堆栈恢复片段时,savedInstanceState包总是为空。

现在,应用流程是:片段创建 - >删除片段(添加到后台) - >从后台堆栈恢复的片段(savedInstanceState包为空)。

以下是相关代码:

public void onActivityCreated(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    Bundle bundle = getArguments();
    Long playlistId = bundle.getLong(Constants.PLAYLIST_ID);
    int playlistItemId = bundle.getInt(Constants.PLAYLISTITEM_ID);

    if (savedInstanceState == null) {
       selectedVideoNumber = playlistItemId;
    } else {
       selectedVideoNumber = savedInstanceState.getInt("SELECTED_VIDEO");
    }
}

public void onSaveInstanceState(Bundle outState) {
        super.onSaveInstanceState(outState);
        outState.putInt(Constants.SELECTED_VIDEO, selectedVideoNumber);
    }

我认为问题是onSavedInstanceState()在被删除并被添加到后台堆栈时从不被调用。如果我不能使用onsavedInstanceState(),还有另一种方法可以解决这个问题吗?

4 个答案:

答案 0 :(得分:6)

onSaveInstanceState(遗憾的是)在正常的堆栈重新创建片段时未被调用。查看http://developer.android.com/guide/components/fragments.html#CreatingHow can I maintain fragment state when added to the back stack?

上的答案

答案 1 :(得分:5)

我喜欢将我在onCreateView中返回的View作为全局变量存储,然后当我返回时,我只需检查一下:

if(mBaseView != null) {
        // Remove the view from the parent
        ((ViewGroup)mBaseView.getParent()).removeView(mBaseView);
        // Return it
        return mBaseView;
    }

答案 2 :(得分:3)

问题是片段需要与IdTag相关联,以便FragmentManager跟踪它。

至少有3种方法可以做到这一点:

  1. 在xml布局中为您的片段声明Id

    android:id=@+id/<Id>
    
  2. 如果您的片段容器ViewId,请使用FragmentTransaction

    FragmentTransaction  add (int containerViewId, Fragment fragment)
    
  3. 如果您的片段未与任何View(例如无头片段)相关联,请为其指定Tag

    FragmentTransaction  add (Fragment fragment, String tag)
    
  4. Also, see this SO answer.

答案 3 :(得分:0)

FWIW,我也打了这个,但在我的情况下,onSaveInstanceState被正确调用,当我在智能手机上启动一个新的活动片段时,我推入了我的状态数据。和你一样,onActivityCreated被称为w / savedInstanceState,总是为null。恕我直言,我认为这是一个错误。

我通过创建一个静态MyApplication状态并将数据放在那里等同于“全局变量”来解决这个问题......