546

我从市场上的应用程序中获取用户报告,并提供以下异常:

java.lang.IllegalStateException: Can not perform this action after onSaveInstanceState
at android.app.FragmentManagerImpl.checkStateLoss(FragmentManager.java:1109)
at android.app.FragmentManagerImpl.popBackStackImmediate(FragmentManager.java:399)
at android.app.Activity.onBackPressed(Activity.java:2066)
at android.app.Activity.onKeyUp(Activity.java:2044)
at android.view.KeyEvent.dispatch(KeyEvent.java:2529)
at android.app.Activity.dispatchKeyEvent(Activity.java:2274)
at com.android.internal.policy.impl.PhoneWindow$DecorView.dispatchKeyEvent(PhoneWindow.java:1803)
at android.view.ViewGroup.dispatchKeyEvent(ViewGroup.java:1112)
at android.view.ViewGroup.dispatchKeyEvent(ViewGroup.java:1112)
at android.view.ViewGroup.dispatchKeyEvent(ViewGroup.java:1112)
at com.android.internal.policy.impl.PhoneWindow$DecorView.superDispatchKeyEvent(PhoneWindow.java:1855)
at com.android.internal.policy.impl.PhoneWindow.superDispatchKeyEvent(PhoneWindow.java:1277)
at android.app.Activity.dispatchKeyEvent(Activity.java:2269)
at com.android.internal.policy.impl.PhoneWindow$DecorView.dispatchKeyEvent(PhoneWindow.java:1803)
at android.view.ViewGroup.dispatchKeyEvent(ViewGroup.java:1112)
at android.view.ViewGroup.dispatchKeyEvent(ViewGroup.java:1112)
at android.view.ViewGroup.dispatchKeyEvent(ViewGroup.java:1112)
at android.view.ViewGroup.dispatchKeyEvent(ViewGroup.java:1112)
at android.widget.TabHost.dispatchKeyEvent(TabHost.java:297)
at android.view.ViewGroup.dispatchKeyEvent(ViewGroup.java:1112)
at android.view.ViewGroup.dispatchKeyEvent(ViewGroup.java:1112)
at android.view.ViewGroup.dispatchKeyEvent(ViewGroup.java:1112)
at com.android.internal.policy.impl.PhoneWindow$DecorView.superDispatchKeyEvent(PhoneWindow.java:1855)
at com.android.internal.policy.impl.PhoneWindow.superDispatchKeyEvent(PhoneWindow.java:1277)
at android.app.Activity.dispatchKeyEvent(Activity.java:2269)
at com.android.internal.policy.impl.PhoneWindow$DecorView.dispatchKeyEvent(PhoneWindow.java:1803)
at android.view.ViewRoot.deliverKeyEventPostIme(ViewRoot.java:2880)
at android.view.ViewRoot.handleFinishedEvent(ViewRoot.java:2853)
at android.view.ViewRoot.handleMessage(ViewRoot.java:2028)
at android.os.Handler.dispatchMessage(Handler.java:99)
at android.os.Looper.loop(Looper.java:132)
at android.app.ActivityThread.main(ActivityThread.java:4028)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:491)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:844)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:602)
at dalvik.system.NativeStart.main(Native Method)

显然它与我不使用的 FragmentManager 有关。stacktrace 没有显示我自己的任何类,所以我不知道这个异常发生在哪里以及如何防止它。

记录一下:我有一个 tabhost,在每个选项卡中都有一个 ActivityGroup 在活动之间切换。

4

34 回答 34

763

请在此处查看我的答案。基本上我只需要:

@Override
protected void onSaveInstanceState(Bundle outState) {
    //No call for super(). Bug on API Level > 11.
}

不要调用super()saveInstanceState方法。这是把事情搞砸了...

这是支持包中的一个已知错误

如果您需要保存实例并向您的实例添加一些内容,您outState Bundle可以使用以下命令:

@Override
protected void onSaveInstanceState(Bundle outState) {
    outState.putString("WORKAROUND_FOR_BUG_19917_KEY", "WORKAROUND_FOR_BUG_19917_VALUE");
    super.onSaveInstanceState(outState);
}

最后,正确的解决方案是(如评论中所见)使用:

transaction.commitAllowingStateLoss();

添加或执行FragmentTransaction导致Exception.

于 2012-04-21T17:43:55.327 回答
139

类似的错误信息有很多相关的问题。检查此特定堆栈跟踪的第二行。此异常与对 的调用特别相关FragmentManagerImpl.popBackStackImmediate

如果会话状态已保存,则此方法调用popBackStack始终失败。IllegalStateException检查来源。您无法阻止抛出此异常。

  • 删除呼叫super.onSaveInstanceState将无济于事。
  • 创建 FragmentcommitAllowingStateLoss无济于事。

以下是我观察到问题的方式:

  • 有一个带有提交按钮的表单。
  • 单击按钮时,将创建一个对话框并启动异步进程。
  • 用户在该过程完成之前单击主页键 -onSaveInstanceState被调用。
  • 该过程完成,进行回调并popBackStackImmediate尝试。
  • IllegalStateException被抛出。

这是我为解决它所做的:

由于无法避免IllegalStateException回调中的 ,请捕获并忽略它。

try {
    activity.getSupportFragmentManager().popBackStackImmediate(name);
} catch (IllegalStateException ignored) {
    // There's no way to avoid getting this if saveInstanceState has already been called.
}

这足以阻止应用程序崩溃。但是现在用户将恢复应用程序并看到他们认为他们按下的按钮根本没有被按下(他们认为)。表单片段仍在显示!

要解决此问题,请在创建对话框时设置一些状态以指示进程已启动。

progressDialog.show(fragmentManager, TAG);
submitPressed = true;

并将此状态保存在捆绑包中。

@Override
public void onSaveInstanceState(Bundle outState) {
    ...
    outState.putBoolean(SUBMIT_PRESSED, submitPressed);
}

不要忘记重新加载它onViewCreated

然后,在恢复时,如果之前尝试过提交,则回滚片段。这可以防止用户返回到看似未提交的表单。

@Override
public void onResume() {
    super.onResume();
    if (submitPressed) {
        // no need to try-catch this, because we are not in a callback
        activity.getSupportFragmentManager().popBackStackImmediate(name);
        submitPressed = false;
    }
}
于 2015-01-09T04:55:56.183 回答
60

在显示片段之前检查是否有活动isFinishing()并注意commitAllowingStateLoss()

例子:

if(!isFinishing()) {
FragmentManager fm = getSupportFragmentManager();
            FragmentTransaction ft = fm.beginTransaction();
            DummyFragment dummyFragment = DummyFragment.newInstance();
            ft.add(R.id.dummy_fragment_layout, dummyFragment);
            ft.commitAllowingStateLoss();
}
于 2015-03-04T01:24:34.180 回答
36

现在是 2017 年 10 月,Google 使用称为 Lifecycle 组件的新事物制作了 Android 支持库。它为这个“onSaveInstanceState 后无法执行此操作”问题提供了一些新思路。

简而言之:

  • 使用生命周期组件来确定是否是弹出片段的正确时间。

带有解释的较长版本:

  • 为什么会出现这个问题?

    这是因为您正试图FragmentManager从您的活动中使用(我想这将保存您的片段?)为您的片段提交事务。通常这看起来就像您正在尝试为即将到来的片段做一些事务,同时主机活动已经调用savedInstanceState方法(用户可能碰巧触摸了主页按钮,因此活动调用onStop(),在我的情况下这是原因)

    通常这个问题不应该发生——我们总是试图在一开始就将片段加载到活动中,就像该onCreate()方法是一个完美的地方。但有时确实会发生这种情况,尤其是当您无法决定将哪个片段加载到该活动时,或者您试图从AsyncTask块中加载片段(或者任何事情都需要一点时间)。在片段事务真正发生之前,但在活动的onCreate()方法之后,用户可以做任何事情的时间。如果用户按下触发活动onSavedInstanceState()方法的主页按钮,则会发生can not perform this action崩溃。

    如果有人想更深入地了解这个问题,我建议他们看看这篇博文它深入到源代码层并解释了很多。此外,它给出了您不应该使用该commitAllowingStateLoss()方法来解决此崩溃的原因(相信我,它对您的代码没有任何好处)

  • 如何解决这个问题?

    • 我应该使用commitAllowingStateLoss()方法来加载片段吗?不,你不应该

    • 我应该覆盖onSaveInstanceState方法,忽略其中的super方法吗?不,你不应该

    • 我是否应该使用神奇的isFinishing内部活动来检查主机活动是否在正确的时刻进行片段交易?是的,这看起来是正确的做法。

  • 看看Lifecycle组件可以做什么。

    基本上,Google 在AppCompatActivity类(以及您应该在项目中使用的其他几个基类)内部进行了一些实现,这使得确定当前生命周期状态变得更加容易。回头看看我们的问题:为什么会出现这个问题?这是因为我们在错误的时间做某事。所以我们尽量不做,这个问题就没有了。

    我为自己的项目编写了一些代码,这是我使用LifeCycle. 我用 Kotlin 编码。

val hostActivity: AppCompatActivity? = null // the activity to host fragments. It's value should be properly initialized.

fun dispatchFragment(frag: Fragment) {
    hostActivity?.let {
       if(it.lifecyclecurrentState.isAtLeast(Lifecycle.State.RESUMED)){
           showFragment(frag)
       }
    }
}

private fun showFragment(frag: Fragment) {
    hostActivity?.let {
        Transaction.begin(it, R.id.frag_container)
                .show(frag)
                .commit()
    }

正如我在上面展示的那样。我将检查主机活动的生命周期状态。使用支持库中的生命周期组件,这可能更具体。该代码的lifecyclecurrentState.isAtLeast(Lifecycle.State.RESUMED)意思是,如果当前状态至少是onResume,不迟于它?这确保我的方法不会在其他生活状态(如onStop)中执行。

  • 一切都完成了吗?

    当然不是。我展示的代码告诉了一些防止应用程序崩溃的新方法。但如果它确实进入 状态onStop,那行代码将不会做任何事情,因此在您的屏幕上什么也不会显示。当用户返回应用程序时,他们将看到一个空屏幕,即空的主机活动,根本没有显示任何片段。这是糟糕的体验(是的,比崩溃好一点)。

    所以在这里我希望有更好的东西:如果应用程序在生命状态之后不会崩溃onResume,事务方法是生命状态感知的;此外,在用户返回我们的应用程序后,活动将尝试继续完成该片段事务操作。

    我在这个方法中添加了更多内容:

class FragmentDispatcher(_host: FragmentActivity) : LifecycleObserver {
    private val hostActivity: FragmentActivity? = _host
    private val lifeCycle: Lifecycle? = _host.lifecycle
    private val profilePendingList = mutableListOf<BaseFragment>()

    @OnLifecycleEvent(Lifecycle.Event.ON_RESUME)
    fun resume() {
        if (profilePendingList.isNotEmpty()) {
            showFragment(profilePendingList.last())
        }
    }

    fun dispatcherFragment(frag: BaseFragment) {
        if (lifeCycle?.currentState?.isAtLeast(Lifecycle.State.RESUMED) == true) {
            showFragment(frag)
        } else {
            profilePendingList.clear()
            profilePendingList.add(frag)
        }
    }

    private fun showFragment(frag: BaseFragment) {
        hostActivity?.let {
            Transaction.begin(it, R.id.frag_container)
                    .show(frag)
                    .commit()
        }
    }
}

我在这个类中维护了一个列表dispatcher,以存储那些没有机会完成事务操作的片段。当用户从主屏幕返回时,发现还有片段等待启动,它会转到注解resume()下的方法。@OnLifecycleEvent(Lifecycle.Event.ON_RESUME)现在我认为它应该像我预期的那样工作。

于 2017-10-04T15:21:45.070 回答
21

这是此问题的不同解决方案。

使用私有成员变量,您可以将返回的数据设置为可以在 super.onResume(); 之后处理的意图。

像这样:

private Intent mOnActivityResultIntent = null; 

@Override
protected void onResume() {
    super.onResume();
    if(mOnActivityResultIntent != null){
        ... do things ...
        mOnActivityResultIntent = null;
    }
 }

@Override
public void onActivityResult(int requestCode, int resultCode, Intent data){
    if(data != null){
        mOnActivityResultIntent = data;
    }
}
于 2012-10-16T05:44:06.900 回答
21

简短而有效的解决方案:

遵循简单的步骤

脚步

第 1 步:覆盖onSaveInstanceState各个片段中的状态。并从中删除超级方法。

 @Override
public void onSaveInstanceState( Bundle outState ) {

}  

第 2 步:使用 fragmentTransaction.commitAllowingStateLoss( );

而不是 fragmentTransaction.commit( ); while 片段操作。

于 2014-04-08T13:24:30.610 回答
12

请注意,使用transaction.commitAllowingStateLoss()可能会导致用户体验不佳。有关引发此异常的原因的更多信息,请参阅这篇文章

于 2015-11-13T15:29:08.877 回答
10

我为这类问题找到了一个肮脏的解决方案。如果您出于任何原因仍想保留您ActivityGroups的(我有时间限制的原因),您只需实施

public void onBackPressed() {}

在你那里Activity做一些back代码。即使旧设备上没有这样的方法,新设备也会调用此方法。

于 2012-02-21T13:10:59.150 回答
6

不要使用 commitAllowingStateLoss(),它应该只用于 UI 状态可以在用户上意外更改的情况。

https://developer.android.com/reference/android/app/FragmentTransaction.html#commitAllowingStateLoss()

如果事务发生在 parentFragment 的 ChildFragmentManager 中,请使用 外部parentFragment.isResume()代替检查。

if (parentFragment.isResume()) {
    DummyFragment dummyFragment = DummyFragment.newInstance();
    transaction = childFragmentManager.BeginTransaction();
    trans.Replace(Resource.Id.fragmentContainer, startFragment);
}
于 2016-12-19T23:38:51.780 回答
5

我有一个类似的问题,场景是这样的:

  • 我的活动正在添加/替换列表片段。
  • 每个列表片段都有一个对活动的引用,以在单击列表项时通知活动(观察者模式)。
  • 每个列表片段调用setRetainInstance(true); 在其onCreate方法中。

ActivityonCreate方法是这样的:

mMainFragment = (SelectionFragment) getSupportFragmentManager()
                .findFragmentByTag(MAIN_FRAGMENT_TAG);
        if (mMainFragment == null) {
            mMainFragment = new SelectionFragment();

            mMainFragment.setListAdapter(new ArrayAdapter<String>(this,
                    R.layout.item_main_menu, getResources().getStringArray(
                            R.array.main_menu)));
mMainFragment.setOnSelectionChangedListener(this);
            FragmentTransaction transaction = getSupportFragmentManager()
                    .beginTransaction();
            transaction.add(R.id.content, mMainFragment, MAIN_FRAGMENT_TAG);
            transaction.commit();
        }

抛出异常是因为当配置更改(设备旋转)时,创建活动,从片段管理器的历史记录中检索主片段,同时片段已经具有对已销毁活动的OLD引用

将实现更改为此解决了问题:

mMainFragment = (SelectionFragment) getSupportFragmentManager()
                .findFragmentByTag(MAIN_FRAGMENT_TAG);
        if (mMainFragment == null) {
            mMainFragment = new SelectionFragment();

            mMainFragment.setListAdapter(new ArrayAdapter<String>(this,
                    R.layout.item_main_menu, getResources().getStringArray(
                            R.array.main_menu)));
            FragmentTransaction transaction = getSupportFragmentManager()
                    .beginTransaction();
            transaction.add(R.id.content, mMainFragment, MAIN_FRAGMENT_TAG);
            transaction.commit();
        }
        mMainFragment.setOnSelectionChangedListener(this);

您需要在每次创建活动时设置侦听器,以避免片段引用活动的旧销毁实例的情况。

于 2015-07-18T12:28:37.243 回答
5

如果继承自FragmentActivity,则必须在以下位置调用超类onActivityResult()

@Override
protected void onActivityResult(int requestCode, int resultCode, Intent intent) {
    super.onActivityResult(requestCode, resultCode, intent);
    ...
}

如果您不这样做并尝试在该方法中显示片段对话框,您可能会得到 OP 的IllegalStateException. (老实说,我不太明白为什么super 调用修复了问题。onActivityResult()之前调用过onResume(),所以应该仍然不允许显示片段对话框。)

于 2018-11-30T22:23:24.263 回答
4

在我的案例中,我发现的最流畅和最简单的解决方案可能是避免将有问题的片段从堆栈中弹出以响应活动结果。所以改变我的这个电话onActivityResult()

popMyFragmentAndMoveOn();

对此:

new Handler(Looper.getMainLooper()).post(new Runnable() {
    public void run() {
        popMyFragmentAndMoveOn();
    }
}

对我有帮助。

于 2017-06-02T16:52:01.670 回答
3

当我按下返回按钮取消地图片段活动上的意图选择器时,我遇到了这个异常。我通过将 onResume(我正在初始化片段的地方)的代码替换为 onstart() 解决了这个问题,并且应用程序运行良好。希望它有所帮助。

于 2014-07-14T11:35:34.637 回答
3

礼貌:IllegalStateException 的解决方案

这个问题困扰了我很长时间,但幸运的是我为它提供了一个具体的解决方案。它的详细解释在这里

使用 commitAllowStateloss() 可能会阻止此异常,但会导致 UI 不规则。到目前为止,我们已经了解 IllegalStateException 在 Activity 状态丢失后尝试提交片段时遇到 - 所以我们应该延迟事务直到状态恢复.它可以像这样简单地完成

声明两个私有布尔变量

 public class MainActivity extends AppCompatActivity {

    //Boolean variable to mark if the transaction is safe
    private boolean isTransactionSafe;

    //Boolean variable to mark if there is any transaction pending
    private boolean isTransactionPending;

现在在 onPostResume() 和 onPause 中,我们设置和取消设置布尔变量 isTransactionSafe。想法是仅在活动处于前台时才将交易标记为安全,这样就没有状态丢失的机会。

/*
onPostResume is called only when the activity's state is completely restored. In this we will
set our boolean variable to true. Indicating that transaction is safe now
 */
public void onPostResume(){
    super.onPostResume();
    isTransactionSafe=true;
}
/*
onPause is called just before the activity moves to background and also before onSaveInstanceState. In this
we will mark the transaction as unsafe
 */

public void onPause(){
    super.onPause();
    isTransactionSafe=false;

}

private void commitFragment(){
    if(isTransactionSafe) {
        MyFragment myFragment = new MyFragment();
        FragmentManager fragmentManager = getFragmentManager();
        FragmentTransaction fragmentTransaction = fragmentManager.beginTransaction();
        fragmentTransaction.add(R.id.frame, myFragment);
        fragmentTransaction.commit();
    }
}

-到目前为止,我们所做的将从 IllegalStateException 中保存,但如果在活动移至后台后完成,我们的事务将丢失,有点像 commitAllowStateloss()。为了帮助解决这个问题,我们有 isTransactionPending 布尔变量

public void onPostResume(){
   super.onPostResume();
   isTransactionSafe=true;
/* Here after the activity is restored we check if there is any transaction pending from
the last restoration
*/
   if (isTransactionPending) {
      commitFragment();
   }
}


private void commitFragment(){

 if(isTransactionSafe) {
     MyFragment myFragment = new MyFragment();
     FragmentManager fragmentManager = getFragmentManager();
     FragmentTransaction fragmentTransaction = fragmentManager.beginTransaction();
     fragmentTransaction.add(R.id.frame, myFragment);
     fragmentTransaction.commit();
     isTransactionPending=false;
 }else {
     /*
     If any transaction is not done because the activity is in background. We set the
     isTransactionPending variable to true so that we can pick this up when we come back to
foreground
     */
     isTransactionPending=true;
 }
}
于 2018-06-30T16:04:30.930 回答
3

片段事务不应该在之后执行Activity.onStop() 检查您是否没有任何可以在onStop(). 最好解决原因,而不是尝试用类似的方法解决问题.commitAllowingStateLoss()

于 2019-06-21T08:48:06.483 回答
2

我认为使用transaction.commitAllowingStateLoss();不是最好的解决方案。当活动的配置更改并调用片段时,将引发此异常onSavedInstanceState(),然后您的异步回调方法尝试提交片段。

简单的解决方案可以是检查活动是否正在更改配置

例如检查isChangingConfigurations()

IE

if(!isChangingConfigurations()) { //commit transaction. }

也检查链接

于 2015-08-13T07:40:21.353 回答
2

此处抛出异常(在 FragmentActivity 中):

@Override
public void onBackPressed() {
    if (!mFragments.getSupportFragmentManager().popBackStackImmediate()) {
        super.onBackPressed();
    }
}

FragmentManager.popBackStatckImmediate(),首先调用了<code>FragmentManager.checkStateLoss()。这就是 的原因IllegalStateException。请参阅下面的实现:

private void checkStateLoss() {
    if (mStateSaved) { // Boom!
        throw new IllegalStateException(
                "Can not perform this action after onSaveInstanceState");
    }
    if (mNoTransactionsBecause != null) {
        throw new IllegalStateException(
                "Can not perform this action inside of " + mNoTransactionsBecause);
    }
}

我只是通过使用一个标志来标记 Activity 的当前状态来解决这个问题。这是我的解决方案:

public class MainActivity extends AppCompatActivity {
    /**
     * A flag that marks whether current Activity has saved its instance state
     */
    private boolean mHasSaveInstanceState;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
    }

    @Override
    protected void onSaveInstanceState(Bundle outState) {
        mHasSaveInstanceState = true;
        super.onSaveInstanceState(outState);
    }

    @Override
    protected void onResume() {
        super.onResume();
        mHasSaveInstanceState = false;
    }

    @Override
    public void onBackPressed() {
        if (!mHasSaveInstanceState) {
            // avoid FragmentManager.checkStateLoss()'s throwing IllegalStateException
            super.onBackPressed();
        }
    }
}
于 2017-08-07T06:19:20.343 回答
2

每当您尝试在活动中加载片段时,请确保活动处于恢复状态并且不会暂停状态。在暂停状态下,您最终可能会丢失已完成的提交操作。

您可以使用 transaction.commitAllowingStateLoss() 而不是 transaction.commit() 来加载片段

或者

创建一个布尔值并检查活动是否不会暂停

@Override
public void onResume() {
    super.onResume();
    mIsResumed = true;
}

@Override
public void onPause() {
    mIsResumed = false;
    super.onPause();
}

然后在加载片段检查时

if(mIsResumed){
//load the your fragment
}
于 2017-09-13T07:07:06.143 回答
2

如果您在 onActivityResult 中执行一些 FragmentTransaction 您可以在 onActivityResult 中设置一些布尔值,然后在 onResume 中您可以根据布尔值执行 FragmentTransaction。请参考下面的代码。

@Override
protected void onResume() {
    super.onResume;
    if(isSwitchFragment){
        isSwitchFragment=false;
        bottomNavigationView.getTabAt(POS_FEED).select();
    }
}

@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
    if (requestCode == FilterActivity.FILTER_REQUEST_EVENT && data != null) {
        isSwitchFragment=true;
    }
}
于 2018-04-11T09:59:39.073 回答
2

关于@Anthonyeef 的好答案,这里是 Java 中的示例代码:

private boolean shouldShowFragmentInOnResume;

private void someMethodThatShowsTheFragment() {

    if (this.getLifecycle().getCurrentState().isAtLeast(Lifecycle.State.RESUMED)) {
        showFragment();
    } else {
        shouldShowFragmentInOnResume = true;
    }
}

private void showFragment() {
    //Your code here
}

@Override
protected void onResume() {
    super.onResume();

    if (shouldShowFragmentInOnResume) {
        shouldShowFragmentInOnResume = false;
        showFragment();
    }
}
于 2018-07-17T12:10:03.077 回答
2

如果您使用 popBackStack() 或 popBackStackImmediate() 方法崩溃,请尝试使用以下方法进行修复:

        if (!fragmentManager.isStateSaved()) {
            fragmentManager.popBackStackImmediate();
        }

这也适用于我。

于 2018-12-12T09:18:09.927 回答
2

在我的例子中,我在一个名为 onActivityResult 的覆盖方法中遇到了这个错误。挖掘之后,我发现我之前可能需要调用“超级”。
我添加了它,它只是工作

override fun onActivityResult(requestCode: Int, resultCode: Int, data: Intent?) {
    super.onActivityResult(requestCode, resultCode, data); //<--- THIS IS THE SUPPER CALL
    if (resultCode == Activity.RESULT_OK && requestCode == 0) {
        mostrarFragment(FiltroFragment.newInstance())
    }

}

也许您只需要在代码之前所做的任何覆盖上添加一个“超级”。

于 2019-01-24T20:48:30.370 回答
2

Kotlin 扩展

fun FragmentManager?.replaceAndAddToBackStack(
    @IdRes containerViewId: Int,
    fragment: () -> Fragment,
    tag: String
) {
    // Find and synchronously remove a fragment with the same tag.
    // The second transaction must start after the first has finished.
    this?.findFragmentByTag(tag)?.let {
        beginTransaction().remove(it).commitNow()
    }
    // Add a fragment.
    this?.beginTransaction()?.run {
        replace(containerViewId, fragment, tag)
        // The next line will add the fragment to a back stack.
        // Remove if not needed.
        // You can use null instead of tag, but tag is needed for popBackStack(), 
        // see https://stackoverflow.com/a/59158254/2914140
        addToBackStack(tag)
    }?.commitAllowingStateLoss()
}

用法:

val fragment = { SomeFragment.newInstance(data) }
fragmentManager?.replaceAndAddToBackStack(R.id.container, fragment, SomeFragment.TAG)
于 2019-07-23T10:15:59.243 回答
1

从支持库版本 24.0.0 开始,您可以调用FragmentTransaction.commitNow()同步提交此事务的方法,而不是调用commit()后跟executePendingTransactions(). 正如文档所说,这种方法更好:

调用 commitNow 比调用 commit() 后跟 executePendingTransactions() 更可取,因为后者将具有尝试提交所有当前未决事务的副作用,无论这是否是所需的行为。

于 2016-08-29T20:22:23.597 回答
1

我知道@Ovidiu Latcu 有一个接受的答案,但过了一段时间,错误仍然存​​在。

@Override
protected void onSaveInstanceState(Bundle outState) {
     //No call for super(). Bug on API Level > 11.
}

Crashlytics 仍然向我发送这个奇怪的错误消息。

但是,现在仅在版本 7+(牛轧糖)上发生错误我的解决方法是在 fragmentTransaction 中使用commitAllowingStateLoss()而不是 commit()。

这篇文章对 commitAllowingStateLoss() 很有帮助,并且再也没有出现片段问题。

总而言之,这里接受的答案可能适用于牛轧糖 android 版本。

这可能会为某人节省几个小时的搜索时间。快乐的编码。<3 欢呼

于 2018-05-18T05:06:06.910 回答
1

为了绕过这个问题,我们可以使用Google I/O 2018 中引入的导航架构组件。导航架构组件简化了 Android 应用中导航的实现。

于 2018-06-22T09:25:32.790 回答
0

将此添加到您的活动中

@Override
public void onSaveInstanceState(Bundle outState) {
    super.onSaveInstanceState(outState);
    if (outState.isEmpty()) {
        // Work-around for a pre-Android 4.2 bug
        outState.putBoolean("bug:fix", true);
    }
}
于 2016-03-03T12:35:06.260 回答
0

我也遇到过这个问题,每次FragmentActivity更改上下文时都会出现问题(例如更改屏幕方向等)。所以最好的解决办法是从你的FragmentActivity.

于 2016-04-01T10:54:10.307 回答
0

我最终创建了一个基本片段并让我的应用程序中的所有片段都扩展它

public class BaseFragment extends Fragment {

    private boolean mStateSaved;

    @CallSuper
    @Override
    public void onSaveInstanceState(Bundle outState) {
        mStateSaved = true;
        super.onSaveInstanceState(outState);
    }

    /**
     * Version of {@link #show(FragmentManager, String)} that no-ops when an IllegalStateException
     * would otherwise occur.
     */
    public void showAllowingStateLoss(FragmentManager manager, String tag) {
        // API 26 added this convenient method
        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
            if (manager.isStateSaved()) {
                return;
            }
        }

        if (mStateSaved) {
            return;
        }

        show(manager, tag);
    }
}

然后当我尝试显示我使用的片段showAllowingStateLoss而不是show

像这样:

MyFragment.newInstance()
.showAllowingStateLoss(getFragmentManager(), MY_FRAGMENT.TAG);

我从这个 PR 提出了这个解决方案:https ://github.com/googlesamples/easypermissions/pull/170/files

于 2017-12-15T17:03:48.877 回答
0

另一种可能的解决方法,我不确定是否在所有情况下都有帮助(起源于此处):

@Override
protected void onSaveInstanceState(Bundle outState) {
    super.onSaveInstanceState(outState);
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {
        final View rootView = findViewById(android.R.id.content);
        if (rootView != null) {
            rootView.cancelPendingInputEvents();
        }
    }
}
于 2018-02-09T08:26:14.817 回答
0

我有同样的问题。它的发生是因为先前活动的破坏。当我支持以前的活动时,它被破坏了。我把它放在基础活动(错误)

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    SpinnerCustom2.setFragmentManager(getSupportFragmentManager());
    onCreateDrawerActivity(savedInstanceState);
}

我把它放到 onStart 中它是正确的

@Override
protected void onStart() {
    super.onStart();
    SpinnerCustom2.setFragmentManager(getSupportFragmentManager());

}
于 2018-06-13T06:13:16.513 回答
0

@Gian Gomen 就我而言,呼叫 SUPER 解决了问题。看起来比 commitAllowingStateLoss() 更正确的解决方案,因为它解决了问题,而不是隐藏它。

@Override
public void onRequestPermissionsResult(
     final int requestCode,
     @NonNull final String[] permissions, 
     @NonNull final int[] grantResults
) {
        super.onRequestPermissionsResult(requestCode,permissions, grantResults); //<--- Without this line crash 
        switch (requestCode) {
            case Constants.REQUEST_CODE_PERMISSION_STORAGE:
                if (grantResults[0] == PackageManager.PERMISSION_GRANTED) {
                    onPermissionGranted(Constants.REQUEST_CODE_PERMISSION_STORAGE);
                }
                break;
        }

于 2019-02-13T13:50:27.057 回答
0

如果状态已保存,请使用 remove() 而不是 popup()。

   private void removeFragment() {
    FragmentManager fragmentManager = getSupportFragmentManager();
    if (fragmentManager.isStateSaved()) {
        List<Fragment> fragments = fragmentManager.getFragments();
        if (fragments != null && !fragments.isEmpty()) {
            fragmentManager.beginTransaction().remove(fragments.get(fragments.size() - 1)).commitAllowingStateLoss();
        }
    }
}
于 2019-03-07T09:16:21.810 回答
0

更改getFragmentManager()getChildFragmentManager(). 不要使用 parent FragmentManager,尝试使用 self 。

于 2021-12-03T02:04:52.950 回答