InputMethodManager is keeping a soft reference to a destroyed activity. The below is in my HPROF dump histogram.
- android.view.inputmethod.InputMethodManager$ControlledInputConnectionWrapper @ 0x43b7f768 Native Stack
- mInputConnection java.lang.ref.SoftReference @ 0x42b51da0
- com.android.internal.widget.EditableInputConnection @ 0x43b7f738
- mTextView, mTargetView android.support.v7.internal.widget.TintEditText @
- mClipExMgr android.sec.clipboard.ClipboardExManager @ 0x434ee190
- myActivity
It's probably an EditText. Do I need to remove listeners on views too, at the onDestroy of an activity? Or should I just ignore this?