我正在使用以下代码在 onCreate 上添加片段:
getSupportFragmentManager().beginTransaction().add(R.id.fragment_container, myFragment)
.addToBackStack(null).commit();
有时我必须使用以下代码在 onResume 上将其删除:
getSupportFragmentManager().beginTransaction().remove(splashFragment).commit();
获取例外: “IllegalStateException:onSaveInstanceState后无法执行此操作”
答案 0 :(得分:0)
使用Handler
提交事务,因为它在onResume
方法中创建了活动状态丢失。信息来自java.lang.IllegalStateException: Can not perform this action after onSaveInstanceState和http://www.androiddesignpatterns.com/2013/08/fragment-transaction-commit-state-loss.html
如果您在FragmentActivity
或onResumeFragments()
Activity
onPostResume()
片段交易