使用LeakCanary在DeathMonitor上泄漏内存

时间:2015-05-12 16:27:09

标签: android memory-leaks leakcanary

我使用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

你们当中有些人已经看到过这样的泄漏吗?任何的想法?这种泄漏出现在:

之后
  • 更改资源配置以切换语言
  • 完成活动
  • 重新启动活动

1 个答案:

答案 0 :(得分:1)

在挖掘一些不良内存搜索后。我找到了这种内存泄漏的解决方案。问题是由于某些drawable未正确分离视图并将指针保留在其他某个Object上。由于这个原因,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();
    }
}