从onResume android上的活动中删除片段

时间:2016-01-13 10:06:11

标签: android android-fragments

我正在使用以下代码在 onCreate 上添加片段:

getSupportFragmentManager().beginTransaction().add(R.id.fragment_container, myFragment)
                .addToBackStack(null).commit();

有时我必须使用以下代码在 onResume 上将其删除:

getSupportFragmentManager().beginTransaction().remove(splashFragment).commit();

获取例外: “IllegalStateException:onSaveInstanceState后无法执行此操作”

1 个答案:

答案 0 :(得分:0)

使用Handler提交事务,因为它在onResume方法中创建了活动状态丢失。信息来自java.lang.IllegalStateException: Can not perform this action after onSaveInstanceStatehttp://www.androiddesignpatterns.com/2013/08/fragment-transaction-commit-state-loss.html

如果您在FragmentActivityonResumeFragments() Activity

中使用onPostResume()片段交易