关于FindBugs-IDEA 中LeakCannary

上一篇 介绍了 FindBugs-IDEA  这期就说一些 LeakCannary 在FindBugs 中如何更改。

一、引入

在build.gradle中添加依赖

dependencies {
     // leakcanary
    debugImplementation 'com.squareup.leakcanary:leakcanary-android:1.6.1'
    releaseImplementation 'com.squareup.leakcanary:leakcanary-android:1.6.1'
    testImplementation 'com.squareup.leakcanary:leakcanary-android-no-op:1.6.1'
}

二、监控

监控可以分为两种:监控activity泄露(默认)  监控Fragment泄露   

我这里用到了 Fragment比较多 所以我这里介绍一些Fragment的泄露

 

在Application中初始化时需要返回refwatcher,在需要监测Fragment回收的地方,用refwatcher完成监测

写法如下:

/**
 * Create By WangZy 1018/12/10
 */
public class Application extends MultiDexApplication {
    public static RefWatcher refWatcher;

    @Override
    public void onCreate() {
        super.onCreate();
        refWatcher = LeakCanary.install(this);
    }
}
/**
 * Create By WangZy 1018/12/10
 */
public abstract class BaseFragment extends Fragment {
    @Override 
    public void onDestroy() {
        super.onDestroy();
        RefWatcher refWatcher = LeakTestApp.refWatcher;
        refWatcher.watch(this);
    }
}

但是把  这么写 在我的项目中 FindBugs-IDEA 会报错。他不让这么写,那就说到了第二种写法。

新建一个类 类名叫什么随意,我这里叫做 LeakCanaryWatcher 

废话不多说

直接上代码  代码如下:

/**
 * 自定义监控对象
 *
 * @author WangZy
 * @date 2019/1/15
 */

public class LeakCanaryWatcher {

    private static RefWatcher sRefWatcher;

    private LeakCanaryWatcher() {

        throw new IllegalStateException("Utility class");
    }

    public static void initialize(Application application) {

        if (!LeakCanary.isInAnalyzerProcess(application)) {
            sRefWatcher = LeakCanary.install(application);
        }
    }

    public static RefWatcher getRefWatcher() {

        if (sRefWatcher == null) {

            return null;
        }
        return sRefWatcher;
    }

    public static void watch(Object obj) {

        if (sRefWatcher != null) {
            sRefWatcher.watch(obj);
        }
    }
}

写完了  用法呢? 

用法其实跟那个用法 差不多~

上面的写法 是这个样的  
refWatcher = LeakCanary.install(this);

用我这个类的写法 是这样的
LeakCanaryWatcher.initialize(this);

然后想watch 时

上面是这样写的
RefWatcher refWatcher = LeakTestApp.refWatcher;
refWatcher.watch(this);

我这里这么写
LeakCanaryWatcher.watch(this);

这样 FindBugs 就不会再报有关这个的错误了。其实就是封装了一层。

祝大家 写代码 无Bug。

 

 

 

 

 

 

 

 

 

 

 

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值