Android / Java: утечка TextInputEditText при уничтожении фрагмента - PullRequest
0 голосов
/ 15 декабря 2018

У меня есть Fragment с простой раскладкой:ConstraintLayout -> LinearLayout -> TextInputLayout -> TextInputEditText

Выглядит нормально и работает, но когда я перехожу к другому Fragment, меню которого текущее получает уничтожено, LeakCanary показывает мне неожиданную утечку памяти , связанную с TextInputEditText, хотя я установил ее на null в onDestroyView().

LeakCanary отчеты:

ConstraintLayout leaked
-> InputMethodManager$ControlledInputConnectionWrapper.mInputConnection
-> EditableInputConnection.mTextView
-> TextInputEditText.mParent

MyFragment.java

public class MyFragment extends Fragment {
    private View view;
    private EditText et;

    public MyFragment() {}

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        view = inflater.inflate(R.layout.my_layout, container, false);
        et   = view.findViewById(R.id.my_et);
        return view;
    }

    @Override
    public void onDestroyView() {
        super.onDestroyView();

        et    = null;
        view  = null;

        // No difference, if I  call super.onDestroyView(); here
    }
}

my_layout.xml

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/my_cl"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <LinearLayout
        android:layout_width="300dp"
        android:layout_height="wrap_content"
        android:layout_marginBottom="8dp"
        android:layout_marginEnd="8dp"
        android:layout_marginStart="8dp"
        android:layout_marginTop="8dp"
        android:gravity="center_horizontal"
        android:orientation="vertical"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent">

        <android.support.design.widget.TextInputLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_marginEnd="8dp"
            android:layout_marginStart="8dp"
            android:layout_marginTop="8dp"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintTop_toTopOf="parent">

            <android.support.design.widget.TextInputEditText
                android:id="@+id/my_et"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:hint="Password"
                android:inputType="numberPassword" />   
        </android.support.design.widget.TextInputLayout>   
    </LinearLayout>    
</android.support.constraint.ConstraintLayout>

Есть идеи?Заранее спасибо!

Редактировать 1 Утечка не появляется, когда я удаляю android.support.design.widget.TextInputEditText из макета.

1 Ответ

0 голосов
/ 23 декабря 2018

Это не решение, но может привести вас к одному.

Поскольку вы используете LeakCanary, проверьте их файл AndroidExcludedRefs.java, который содержит список известных утечек либо в самом Android SDK, либо в некоторых производителях.версии.

Он содержит несколько известных утечек для InputMethodManager, одна из которых, вероятно, является причиной утечки, которую вы видите.Оба содержат «Hack» ссылки на возможные обходные пути.

  INPUT_METHOD_MANAGER__SERVED_VIEW(SDK_INT >= ICE_CREAM_SANDWICH_MR1 && SDK_INT <= N_MR1) {
    @Override void add(ExcludedRefs.Builder excluded) {
      String reason = "When we detach a view that receives keyboard input, the InputMethodManager"
          + " leaks a reference to it until a new view asks for keyboard input."
          + " Tracked here: https://code.google.com/p/android/issues/detail?id=171190"
          + " Hack: https://gist.github.com/pyricau/4df64341cc978a7de414";
      excluded.instanceField("android.view.inputmethod.InputMethodManager", "mNextServedView")
          .reason(reason);
      excluded.instanceField("android.view.inputmethod.InputMethodManager", "mServedView")
          .reason(reason);
      excluded.instanceField("android.view.inputmethod.InputMethodManager",
          "mServedInputConnection").reason(reason);
    }
  },

  INPUT_METHOD_MANAGER__ROOT_VIEW(SDK_INT >= ICE_CREAM_SANDWICH_MR1 && SDK_INT <= M) {
    @Override void add(ExcludedRefs.Builder excluded) {
      excluded.instanceField("android.view.inputmethod.InputMethodManager", "mCurRootView")
          .reason("The singleton InputMethodManager is holding a reference to mCurRootView long"
              + " after the activity has been destroyed."
              + " Observed on ICS MR1: https://github.com/square/leakcanary/issues/1"
              + "#issuecomment-100579429"
              + " Hack: https://gist.github.com/pyricau/4df64341cc978a7de414");
    }
  },
...