上一篇 介绍了 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。