EditText addTextChangedListener导致内存泄漏

时间:2015-05-22 04:00:37

标签: android memory-leaks leakcanary

我使用Migrating to Android Studio检查我的应用是否有内存泄漏, 它报告泄漏如下 enter image description here

 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

1 个答案:

答案 0 :(得分:0)

我找到了相关主题Android memory leak on textview

Utils.clearTextLineCache()可能是一个很好的解决方法。