我使用LeakCanary检查我的应用程序是否存在内存泄漏,它报告泄漏如下
public AutofitHelper setEnabled(boolean enabled) {
if (mEnabled != enabled) {
mEnabled = enabled;
if (enabled) {
mTextView.addTextChangedListener(mTextWatcher);
mTextView.addOnLayoutChangeListener(mOnLayoutChangeListener);
autofit();
} else {
android.util.Log.i("linlian","AutofitHelper.setEnabled()remove="+mTextView);
mTextView.removeTextChangedListener(mTextWatcher);
mTextView.removeOnLayoutChangeListener(mOnLayoutChangeListener);
mTextView.setTextSize(TypedValue.COMPLEX_UNIT_PX, mTextSize);
}
}
return this;
}
setEnable(true)
为TextView添加的代码调用addTextChangedListener
,我已经添加setEnable(false)
到了removeTextChangedListener
,但这还不够,还有一个静态TextLine.sCached
引用,如何释放sCashed
.
我在 TextLine 中找到的以下代码片段
static TextLine recycle(TextLine tl) {
tl.mText = null;
tl.mPaint = null;
tl.mDirections = null;
tl.mMetricAffectingSpanSpanSet.recycle();
tl.mCharacterStyleSpanSet.recycle();
tl.mReplacementSpanSpanSet.recycle();
synchronized(sCached) {
for (int i = 0; i < sCached.length; ++i) {
if (sCached[i] == null) {
sCached[i] = tl;
break;
}
}
}
return null;
}
但是,如何以正确的方式使用它来回收静电sCashed
?