Merge "Set InputMethoMananger#mCurRootView to null when window dismissed"

am: 7bd18423f6

Change-Id: Ie0127bd83b714c540bcf387a3fc74d01bd60eb13
This commit is contained in:
daqi
2018-09-19 19:22:12 -07:00
committed by android-build-merger

View File

@@ -1421,6 +1421,10 @@ public final class InputMethodManager {
mServedView.getWindowToken() == appWindowToken) {
finishInputLocked();
}
if (mCurRootView != null &&
mCurRootView.getWindowToken() == appWindowToken) {
mCurRootView = null;
}
}
}