gpt4 book ai didi

android - 使用 LeakCanary 在 DeathMonitor 上发生内存泄漏

转载 作者:太空狗 更新时间:2023-10-29 14:09:23 24 4
gpt4 key购买 nike

我使用 LeakCanary,不幸的是发生了泄漏,这是 logcat:

In com.appturbo.appoftheday2015:2.09.2:222.
* com.appturbo.appturbo.ui.HomeActivity has leaked:
* GC ROOT com.android.internal.util.AsyncChannel$DeathMonitor.this$0
* references com.android.internal.util.AsyncChannel.mSrcContext
* leaks com.appturbo.appturbo.ui.HomeActivity instance

* Reference Key: e049c2ed-6784-4850-b794-20fa96c13dcf
* Device: motorola google Nexus 6 shamu
* Android Version: 5.1 API: 22
* Durations: watch=5176ms, gc=228ms, heap dump=4974ms, analysis=29320ms

你们中的一些人是否已经见过这样的泄漏?任何的想法?此泄漏出现在:

  • 更改资源配置以切换语言
  • 完成 Activity
  • 重新开始 Activity

最佳答案

在深入挖掘一些不好的内存之后。我找到了解决此内存泄漏的方法。问题是由于某些可绘制对象未正确地从 View 分离并将指针保留在其他某个对象上。因此 GC 无法删除这些对象,这就是我们的内存泄漏。

为了解决这个问题,我使用这段代码取消链接drawable。

    public static void unbindDrawables(View view) {
if (view.getBackground() != null) {
view.getBackground().setCallback(null);
}
if (view instanceof ViewGroup) {
for (int i = 0; i < ((ViewGroup) view).getChildCount(); i++) {
unbindDrawables(((ViewGroup) view).getChildAt(i));
}
((ViewGroup) view).removeAllViews();
}
}

关于android - 使用 LeakCanary 在 DeathMonitor 上发生内存泄漏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30196553/

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