Android 片段RootView和/或数据绑定变量泄漏

Android 片段RootView和/或数据绑定变量泄漏,android,android-databinding,android-architecture-components,leakcanary,Android,Android Databinding,Android Architecture Components,Leakcanary,我正在使用BottomNavigationView并在onNavigationItemSelected中的片段之间切换,因为我需要自定义进入和退出动画 但是,我的片段根视图和/或数据绑定变量在过程中泄漏 见下面的金丝雀分析。clFeedFragmentRoot是FragmentMainFeed的根视图,并且 feedBinding是FragmentMainFeedBinding ├─ com.google.android.gms.ads.internal.zzq │ Leaking: NO

我正在使用BottomNavigationView并在onNavigationItemSelected中的片段之间切换,因为我需要自定义进入和退出动画

但是,我的片段根视图和/或数据绑定变量在过程中泄漏

见下面的金丝雀分析。
clFeedFragmentRoot
FragmentMainFeed
的根视图,并且

feedBinding
FragmentMainFeedBinding

├─ com.google.android.gms.ads.internal.zzq
│    Leaking: NO (zzq↓ is not leaking and a class is never leaking)
│    GC Root: System class
│    ↓ static zzq.zzbmc
├─ com.google.android.gms.ads.internal.zzq
│    Leaking: NO (zzpv↓ is not leaking)
│    ↓ zzq.zzbmk
├─ com.google.android.gms.internal.ads.zzpv
│    Leaking: NO (zzpy↓ is not leaking)
│    ↓ zzpv.zzboy
├─ com.google.android.gms.internal.ads.zzpy
│    Leaking: NO (MainActivity↓ is not leaking)
│    ↓ zzpy.zzzr
├─ com.mypackage.ui.main.MainActivity
│    Leaking: NO (NavHostController↓ is not leaking and Activity#mDestroyed is false)
│    ↓ MainActivity.navController
├─ androidx.navigation.NavHostController
│    Leaking: NO (NavHostFragment↓ is not leaking)
│    ↓ NavHostController.mLifecycleOwner
├─ androidx.navigation.fragment.NavHostFragment
│    Leaking: NO (FragmentManagerImpl↓ is not leaking and Fragment#mFragmentManager is not null)
│    ↓ NavHostFragment.mChildFragmentManager
├─ androidx.fragment.app.FragmentManagerImpl
│    Leaking: NO (HashMap↓ is not leaking)
│    ↓ FragmentManagerImpl.mActive
├─ java.util.HashMap
│    Leaking: NO (HashMap$HashMapEntry[]↓ is not leaking)
│    ↓ HashMap.table
├─ java.util.HashMap$HashMapEntry[]
│    Leaking: NO (HashMap$HashMapEntry↓ is not leaking)
│    ↓ array HashMap$HashMapEntry[].[0]
├─ java.util.HashMap$HashMapEntry
│    Leaking: NO (FragmentStateManager↓ is not leaking)
│    ↓ HashMap$HashMapEntry.value
├─ androidx.fragment.app.FragmentStateManager
│    Leaking: NO (FeedFragment↓ is not leaking)
│    ↓ FragmentStateManager.mFragment
├─ com.mypackage.ui.main.feed.FeedFragment
│    Leaking: NO (Fragment#mFragmentManager is not null)
│    ↓ FeedFragment.feedBinding
│                   ~~~~~~~~~~~
├─ com.mypackage.databinding.FragmentMainFeedBindingImpl
│    Leaking: UNKNOWN
│    ↓ FragmentMainFeedBindingImpl.clFeedFragmentRoot
│                                  ~~~~~~~~~~~~~~~~~~
╰→ androidx.constraintlayout.widget.ConstraintLayout
     Leaking: YES (ObjectWatcher was watching this)
     mContext instance of com.mypackage.ui.main.MainActivity with mDestroyed = false
     View#mParent is null
     View#mAttachInfo is null (view detached)
     View.mWindowAttachCount = 1
     key = 991c9d5b-7065-4c88-9b79-74ad67f5f72d
     watchDurationMillis = 77959
     retainedDurationMillis = 72956
     retainedHeapByteSize=18132), ApplicationLeak(className=androidx.constraintlayout.widget.ConstraintLayout, leakTrace=
我需要帮助解决泄漏问题。
感谢FeedFragment.onDestroyView()中的

,您需要将FeedFragment.feedBinding设置为null(绑定包含对视图的引用,因此您需要在onDestroyView()准确后释放绑定对象!!尽管您迟到了:)不久前就解决了这个问题。不过,非常感谢你,你重申了这一点。