我有两个片段friendListFragment和logListFragment。
FragmentManager fm = getSupportFragmentManager();
FragmentTransaction ft = fm.beginTransaction();
FriendListFragment friendListFragment = (FriendListFragment)fm.findFragmentById(R.id.friend_list_fragment_container);
LogListFragment logListFragment = (LogListFragment)fm.findFragmentById(R.id.log_list_fragment_container);
后者是在前者的onListItemClick事件的上下文中创建的。
fm.popBackStack(null, FragmentManager.POP_BACK_STACK_INCLUSIVE);
logListFragment = LogListFragment.newInstance(name);
ft.add(R.id.log_list_fragment_container, logListFragment);
if (getResources().getConfiguration().orientation == Configuration.ORIENTATION_PORTRAIT) {
ft.hide(friendListFragment);
}
ft.addToBackStack(null);
ft.commit();
每次调用onListItemClick 时,我都会先清除后台堆栈,因为我只想在后台堆栈上拥有最新的logListFragment。
在我的活动的onCreate功能中,我会注意手机的方向。在纵向模式下,我清除 backstack 并以下列方式再次添加logListFragment :
if ((logListFragment != null) && (getResources().getConfiguration().orientation == Configuration.ORIENTATION_PORTRAIT)) {
fm.popBackStack(null, FragmentManager.POP_BACK_STACK_INCLUSIVE);
ft.add(R.id.log_list_fragment_container, logListFragment);
ft.hide(friendListFragment);
ft.addToBackStack(null);
ft.commit();
}
之后,friendListFragment按预期隐藏,但logListFragment也不可见。当我按以下方式更改代码时,它按预期工作:
if ((logListFragment != null) && (getResources().getConfiguration().orientation == Configuration.ORIENTATION_PORTRAIT)) {
LogListFragment copy = new LogListFragment();
copy.setArguments(logListFragment.getArguments());
fm.popBackStack(null, FragmentManager.POP_BACK_STACK_INCLUSIVE);
ft.add(R.id.log_list_fragment_container, copy); // <- use copy
ft.hide(friendListFragment);
ft.addToBackStack(null);
ft.commit();
}
当我添加一个新的LogListFragment实例时,它可以工作。
问题:
- 为什么我需要创建一个新实例?
- 有人知道更好的解决方案吗?