Loading core/java/android/view/inputmethod/InputMethodManager.java +6 −2 Original line number Diff line number Diff line Loading @@ -405,9 +405,11 @@ public final class InputMethodManager { } // Check focus again in case that "onWindowFocus" is called before // handling this message. if (mServedView != null && mServedView.hasWindowFocus()) { checkFocus(mHasBeenInactive); } } } return; } } Loading Loading @@ -1202,7 +1204,9 @@ public final class InputMethodManager { } if (DEBUG) Log.v(TAG, "checkFocus: view=" + mServedView + " next=" + mNextServedView + " forceNewFocus=" + forceNewFocus); + " forceNewFocus=" + forceNewFocus + " package=" + (mServedView != null ? mServedView.getContext().getPackageName() : "<none>")); if (mNextServedView == null) { finishInputLocked(); Loading Loading
core/java/android/view/inputmethod/InputMethodManager.java +6 −2 Original line number Diff line number Diff line Loading @@ -405,9 +405,11 @@ public final class InputMethodManager { } // Check focus again in case that "onWindowFocus" is called before // handling this message. if (mServedView != null && mServedView.hasWindowFocus()) { checkFocus(mHasBeenInactive); } } } return; } } Loading Loading @@ -1202,7 +1204,9 @@ public final class InputMethodManager { } if (DEBUG) Log.v(TAG, "checkFocus: view=" + mServedView + " next=" + mNextServedView + " forceNewFocus=" + forceNewFocus); + " forceNewFocus=" + forceNewFocus + " package=" + (mServedView != null ? mServedView.getContext().getPackageName() : "<none>")); if (mNextServedView == null) { finishInputLocked(); Loading