为什么我在Android中收到“无法删除附加到另一个FragmentManager的Fragment”?

时间:2019-04-05 10:09:19

标签: android android-fragments fragmentmanager

我正在尝试删除一个片段,但是很少在Crashlytics上看到一个错误java.lang.IllegalStateException:无法删除附加到另一个FragmentManager的片段。

我有一个单独的片段,用于获取用户的当前位置。我使用下面的代码打开片段。

private void openLocationFragment() {
    LocationFragment locationFragment = LocationFragment.newInstance();
    FragmentManager fragmentManager = getSupportFragmentManager();
    fragmentManager.beginTransaction()
            .replace(R.id.fragmentContainer, locationFragment, "location_fragment")
            .commitAllowingStateLoss();
}

现在在获取位置更新后的片段中,我使用活动附带的侦听器调用onLocationFetched方法。

在此方法中,我使用以下代码删除了片段。

@Override
public void onLocationFetched(Location location) {
    FragmentManager fragmentManager = getSupportFragmentManager();
    LocationFragment locationFragment = (LocationFragment) fragmentManager.findFragmentByTag("location_fragment");
    if (locationFragment != null) {
        fragmentManager.beginTransaction()
                .remove(locationFragment) // Here is the exception
                .commitAllowingStateLoss();
    }
    if(location == null){
        fetchUserDetails();
    }else
        fetchCity(location);
}

StackTrace:

Fatal Exception: **java.lang.IllegalStateException: Cannot remove Fragment attached to a different FragmentManager.** 

Fragment LocationFragment{32a2ed0 (d41fc341-baf2-4266-948a-866fba7e57b5) id=0x7f09028b location_fragment} is already attached to a FragmentManager.
       at androidx.fragment.app.BackStackRecord.remove(BackStackRecord.java:316)
       at com.avail.easyloans.feature.marketplace.activities.ActivityMarketplace.onFragmentFetched(ActivityMarketplace.java:909)
       at com.avail.easyloans.base.fragments.LocationFragment.sendLocationToClient(LocationFragment.java:192)
       at com.avail.easyloans.base.fragments.LocationFragment.access$000(LocationFragment.java:46)
       at com.avail.easyloans.base.fragments.LocationFragment$4.onSuccess(LocationFragment.java:220)
       at com.avail.easyloans.base.fragments.LocationFragment$4.onSuccess(LocationFragment.java:214)
       at com.google.android.gms.tasks.zzn.run(zzn.java:4)
       at android.os.Handler.handleCallback(Handler.java:836)
       at android.os.Handler.dispatchMessage(Handler.java:103)
       at android.os.Looper.loop(Looper.java:203)
       at android.app.ActivityThread.main(ActivityThread.java:6339)
       at java.lang.reflect.Method.invoke(Method.java)
       at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1084)
       at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:945)

我在这里怎么了?

1 个答案:

答案 0 :(得分:1)

我希望每个Activity都有责任维护自己的Fragment。这意味着,如果您尝试访问的Fragment与另一个Activity的{​​{1}}相关联,那么您的应用将失败。

根据您想要的行为,我可以考虑几种解决方法。如果您不介意在两个单独的活动中有两个FragmentManager拥有各自的生命周期,则可以在LocationFragment上使用findFragmentById()来访问它们。即:

FragmentManager

在其他活动中执行相同的操作。另外,您可以调用在private void openLocationFragment() { FragmentManager fragmentManager = getSupportFragmentManager(); final Fragment current = fragmentManager.findFragmentById(R.id.fragmentContainer); if(current == null || !(current instanceof LocationFragment)) { fragmentManager.beginTransaction() .replace(R.id.fragmentContainer, LocationFragment.newInstance()) .commitAllowingStateLoss(); } }

中托管Activity的其他LocationFragment