gpt4 book ai didi

android - 导航 Controller fragment 泄漏

转载 作者:行者123 更新时间:2023-12-04 03:45:12 28 4
gpt4 key购买 nike

当我使用 JetPack Navigation 在 fragment 之间转换时,我很难找到发生泄漏的原因。
请参阅下面的 from 泄漏金丝雀的堆栈跟踪

D/LeakCanary: ​
┬───
│ GC Root: System class

├─ android.view.inputmethod.InputMethodManager class
│ Leaking: NO (InputMethodManager↓ is not leaking and a class is never leaking)
│ ↓ static InputMethodManager.sInstance
├─ android.view.inputmethod.InputMethodManager instance
│ Leaking: NO (DecorView↓ is not leaking and InputMethodManager is a singleton)
│ ↓ InputMethodManager.mNextServedView
├─ com.android.internal.policy.DecorView instance
│ Leaking: NO (LinearLayout↓ is not leaking and View attached)
│ View is part of a window view hierarchy
D/LeakCanary: │ View.mAttachInfo is not null (view attached)
│ View.mWindowAttachCount = 1
│ mContext instance of com.android.internal.policy.DecorContext, wrapping activity com.carepay.flows.CarePayActivity
│ with mDestroyed = false
│ ↓ DecorView.mContentRoot
├─ android.widget.LinearLayout instance
│ Leaking: NO (CarePayActivity↓ is not leaking and View attached)
│ View is part of a window view hierarchy
│ View.mAttachInfo is not null (view attached)
│ View.mWindowAttachCount = 1
│ mContext instance of com.carepay.flows.CarePayActivity with mDestroyed = false
│ ↓ LinearLayout.mContext
├─ com.carepay.flows.CarePayActivity instance
│ Leaking: NO (NavHostFragment↓ is not leaking and Activity#mDestroyed is false)
│ mApplication instance of com.carepay.MemberApp
│ mBase instance of androidx.appcompat.view.ContextThemeWrapper, not wrapping known Android context
│ ↓ CarePayActivity.mFragments
├─ androidx.fragment.app.FragmentController instance
│ Leaking: NO (NavHostFragment↓ is not leaking)
│ ↓ FragmentController.mHost
├─ androidx.fragment.app.FragmentActivity$HostCallbacks instance
│ Leaking: NO (NavHostFragment↓ is not leaking)
│ this$0 instance of com.carepay.flows.CarePayActivity with mDestroyed = false
│ mActivity instance of com.carepay.flows.CarePayActivity with mDestroyed = false
│ mContext instance of com.carepay.flows.CarePayActivity with mDestroyed = false
│ ↓ FragmentActivity$HostCallbacks.mFragmentManager
D/LeakCanary: ├─ androidx.fragment.app.FragmentManagerImpl instance
│ Leaking: NO (NavHostFragment↓ is not leaking)
│ ↓ FragmentManagerImpl.mPrimaryNav
├─ androidx.navigation.fragment.NavHostFragment instance
│ Leaking: NO (Fragment#mFragmentManager is not null)
│ ↓ NavHostFragment.mNavController
│ ~~~~~~~~~~~~~~
├─ androidx.navigation.NavHostController instance
│ Leaking: UNKNOWN
│ Retaining 1313968 bytes in 7994 objects
│ mActivity instance of com.carepay.flows.CarePayActivity with mDestroyed = false
│ mContext instance of com.carepay.flows.CarePayActivity with mDestroyed = false
│ ↓ NavHostController.mOnDestinationChangedListeners
│ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
├─ java.util.concurrent.CopyOnWriteArrayList instance
│ Leaking: UNKNOWN
│ Retaining 1302920 bytes in 7681 objects
│ ↓ CopyOnWriteArrayList.elements
│ ~~~~~~~~
├─ java.lang.Object[] array
│ Leaking: UNKNOWN
│ Retaining 1302896 bytes in 7679 objects
│ ↓ Object[].[2]
D/LeakCanary: │ ~~~
├─ androidx.navigation.ui.ActionBarOnDestinationChangedListener instance
│ Leaking: UNKNOWN
│ Retaining 5425 bytes in 190 objects
│ mActivity instance of com.carepay.flows.CarePayActivity with mDestroyed = false
│ mContext instance of dagger.hilt.android.internal.managers.ViewComponentManager$FragmentContextWrapper, wrapping
│ activity com.carepay.flows.CarePayActivity with mDestroyed = false
│ ↓ ActionBarOnDestinationChangedListener.mContext
│ ~~~~~~~~
├─ dagger.hilt.android.internal.managers.ViewComponentManager$FragmentContextWrapper instance
│ Leaking: UNKNOWN
│ Retaining 4365 bytes in 162 objects
│ mBase instance of com.carepay.flows.CarePayActivity with mDestroyed = false
│ ViewComponentManager$FragmentContextWrapper wraps an Activity with Activity.mDestroyed false
│ ↓ ViewComponentManager$FragmentContextWrapper.fragment
│ ~~~~~~~~
╰→ com.carepay.flows.treatmentdetail.TreatmentDetailFragment instance
​ Leaking: YES (ObjectWatcher was watching this because com.carepay.flows.treatmentdetail.TreatmentDetailFragment
​ received Fragment#onDestroy() callback and Fragment#mFragmentManager is null)
​ Retaining 3565 bytes in 129 objects
​ key = 3b650fce-861c-463b-8ccb-78255dfc535a
​ watchDurationMillis = 22434
​ retainedDurationMillis = 16751
​ componentContext instance of dagger.hilt.android.internal.managers.ViewComponentManager$FragmentContextWrapper,
​ wrapping activity com.carepay.flows.CarePayActivity with mDestroyed = false
所有 fragment 转换都会引发此泄漏,因此我将分享来自所选堆栈跟踪中的 fragment 的此 fragment 。
治疗细节 fragment
class TreatmentDetailFragment : OverlayFragment(R.layout.fragment_treatment_detail) {

private val binding get() = (_binding as FragmentTreatmentDetailBinding?)!!
private val args: TreatmentDetailFragmentArgs by navArgs()
private val viewModel by viewModels<TreatmentDetailViewModel>()

override fun onCreateView(
inflater: LayoutInflater, container: ViewGroup?,
savedInstanceState: Bundle?
): View {
_binding = FragmentTreatmentDetailBinding.inflate(inflater, container, false)

val adapter = ItemsAdapter()
binding.treatmentItems.adapter = adapter

setupObservers(adapter)
viewModel.fetchTreatment(args.treatmentId, lifecycle)

return binding.root
}

private fun setupObservers(adapter: ItemsAdapter) {
viewModel.treatment.observe(viewLifecycleOwner){ treatment ->
binding.titleView.text = getString(R.string.treatment, treatment.treatmentCode)
binding.treatment = treatment
adapter.items = treatment.getItems()
adapter.notifyDataSetChanged()
}
}
}
OverlayFragment
abstract class OverlayFragment(@LayoutRes layoutResource: Int) : BaseFragment(layoutResource) {

override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
super.onViewCreated(view, savedInstanceState)

val activity = requireActivity() as CarePayActivity
activity.showBackButton(true)
activity.showCloseIcon(true)
activity.showBottomNavigation(View.GONE)
}
}
基础 fragment
@AndroidEntryPoint
abstract class BaseFragment(@LayoutRes layoutResource: Int) : Fragment(layoutResource) {
@Inject
protected lateinit var memberSettingsRepository: MemberSettingsRepository
protected var _binding: ViewBinding? = null

override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
super.onViewCreated(view, savedInstanceState)
val navController = findNavController()
val appBarConfiguration = AppBarConfiguration(
setOf(
R.id.navigation_health,
R.id.navigation_benefits,
R.id.navigation_clinics,
R.id.navigation_account
)
)
val toolbar = view.findViewById<Toolbar>(R.id.toolbar)
val activity = requireActivity() as CarePayActivity
activity.setSupportActionBar(toolbar)

activity.setupActionBarWithNavController(navController, appBarConfiguration)
}
}
Activity
@AndroidEntryPoint
class CarePayActivity : AppCompatActivity() {

@Inject
lateinit var memberSettingsRepository: MemberSettingsRepository

override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_carepay)
val navView: BottomNavigationView = findViewById(R.id.nav_view)

val navController = findNavController(R.id.nav_host_fragment)
val inflater = navController.navInflater
val graph = inflater.inflate(R.navigation.mobile_navigation)

when {
intent.hasExtra(RESUMED) -> {
graph.startDestination = R.id.navigation_health
}
else -> {
graph.startDestination = R.id.navigation_setup
}
}
navController.graph = graph
navView.setupWithNavController(navController)

}

override fun onSupportNavigateUp(): Boolean {
return findNavController(R.id.nav_host_fragment).navigateUp() || super.onSupportNavigateUp()
}

override fun onBackPressed() {
val currentDestination = findNavController(R.id.nav_host_fragment).currentDestination
when (currentDestination?.id) {
R.id.navigation_health -> {
val dialog = getDialog(
getString(R.string.exit),
getString(R.string.exit_message, getString(R.string.app_name)),
getString(R.string.yes),
getString(R.string.no),
object : DialogButtonEvents {
override fun onButtonClicked(id: Int) {
if (id == R.id.positiveButton) {
finish()
}
}

})
dialog.show()
dialog.window?.setBackgroundDrawable(ColorDrawable(Color.TRANSPARENT));
}
else -> {
findNavController(R.id.nav_host_fragment).navigateUp()
}
}
}
}

最佳答案

 val toolbar = view.findViewById<Toolbar>(R.id.toolbar)
val activity = requireActivity() as CarePayActivity
activity.setSupportActionBar(toolbar)

activity.setupActionBarWithNavController(navController, appBarConfiguration)
这些行会导致泄漏,因为您提供的是 navController属于 FragmentActivity ,所以每当 Fragment正在销毁,因为 navController 将无法取消引用.

关于android - 导航 Controller fragment 泄漏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65299446/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com