Merge "Fix a remaining View leak in InputMethodManager." into nyc-dev

am: e470fcf

* commit 'e470fcfeb001d52c4add58f8420709cb6db7e7c4':
  Fix a remaining View leak in InputMethodManager.

Change-Id: I9f83e4de49c527d629091ffc6cf13297bdd6df3b
This commit is contained in:
Yohei Yukawa
2016-04-05 17:28:32 +00:00
committed by android-build-merger

View File

@@ -1348,7 +1348,7 @@ public final class InputMethodManager {
synchronized (mH) {
if (DEBUG) Log.v(TAG, "onViewDetachedFromWindow: view=" + dumpViewInfo(view)
+ " mServedView=" + dumpViewInfo(mServedView));
if (mServedView == view && view.hasWindowFocus()) {
if (mServedView == view) {
mNextServedView = null;
scheduleCheckFocusLocked(view);
}