莫名其妙的軟鍵盤View記憶體漏失

2020-09-22 15:01:54

這個洩漏發生在我的Fragment頁面銷燬的時候,我既沒有使用EditTextView,只有一個列表一個圖片和一個視訊播放View,剛看到的時候非常奇怪,我接受不了。
這個問題可能發生在不同情況下,Fragment銷燬只是一種然後找了一下網上有這麼個解決方式:

protected void fixSoftInputLeaks(final Activity activity) {
        //解決軟鍵盤View記憶體漏失Google的bug
        if (activity == null) return;
        InputMethodManager imm =
                (InputMethodManager) AppUtils.getApp().getSystemService(Context.INPUT_METHOD_SERVICE);
        if (imm == null) return;
        String[] leakViews = new String[]{"mLastSrvView", "mCurRootView", "mServedView", "mNextServedView"};
        for (String leakView : leakViews) {
            try {
                Field leakViewField = InputMethodManager.class.getDeclaredField(leakView);
                if (leakViewField == null) continue;
                if (!leakViewField.isAccessible()) {
                    leakViewField.setAccessible(true);
                }
                Object obj = leakViewField.get(imm);
                if (!(obj instanceof View)) continue;
                View view = (View) obj;
                if (view.getRootView() == activity.getWindow().getDecorView().getRootView()) {
                    leakViewField.set(imm, null);
                }
            } catch (Throwable ignore) { /**/ }
        }
    }

只需要在你的發生洩露的Fragment或者在Activity的onDestroy中呼叫此方法即可。
看程式碼描述這應該是Google的bug,特此記錄。