Loading core/java/android/view/ViewRootImpl.java +0 −5 Original line number Original line Diff line number Diff line Loading @@ -2018,7 +2018,6 @@ public final class ViewRootImpl implements ViewParent, mLastWasImTarget = imTarget; mLastWasImTarget = imTarget; InputMethodManager imm = InputMethodManager.peekInstance(); InputMethodManager imm = InputMethodManager.peekInstance(); if (imm != null && imTarget) { if (imm != null && imTarget) { imm.startGettingWindowFocus(mView); imm.onWindowFocus(mView, mView.findFocus(), imm.onWindowFocus(mView, mView.findFocus(), mWindowAttributes.softInputMode, mWindowAttributes.softInputMode, !mHasHadWindowFocus, mWindowAttributes.flags); !mHasHadWindowFocus, mWindowAttributes.flags); Loading Loading @@ -3322,10 +3321,6 @@ public final class ViewRootImpl implements ViewParent, InputMethodManager imm = InputMethodManager.peekInstance(); InputMethodManager imm = InputMethodManager.peekInstance(); if (mView != null) { if (mView != null) { if (hasWindowFocus && imm != null && mLastWasImTarget && !isInLocalFocusMode()) { imm.startGettingWindowFocus(mView); } mAttachInfo.mKeyDispatchState.reset(); mAttachInfo.mKeyDispatchState.reset(); mView.dispatchWindowFocusChanged(hasWindowFocus); mView.dispatchWindowFocusChanged(hasWindowFocus); mAttachInfo.mTreeObserver.dispatchOnWindowFocusChange(hasWindowFocus); mAttachInfo.mTreeObserver.dispatchOnWindowFocusChange(hasWindowFocus); Loading core/java/android/view/inputmethod/InputMethodManager.java +7 −29 Original line number Original line Diff line number Diff line Loading @@ -282,11 +282,6 @@ public final class InputMethodManager { // ----------------------------------------------------------- // ----------------------------------------------------------- /** * This is the root view of the overall window that currently has input * method focus. */ View mCurRootView; /** /** * This is the view that should currently be served by an input method, * This is the view that should currently be served by an input method, * regardless of the state of setting that up. * regardless of the state of setting that up. Loading Loading @@ -806,7 +801,6 @@ public final class InputMethodManager { * Disconnect any existing input connection, clearing the served view. * Disconnect any existing input connection, clearing the served view. */ */ void finishInputLocked() { void finishInputLocked() { mCurRootView = null; mNextServedView = null; mNextServedView = null; if (mServedView != null) { if (mServedView != null) { if (DEBUG) Log.v(TAG, "FINISH INPUT: " + mServedView); if (DEBUG) Log.v(TAG, "FINISH INPUT: " + mServedView); Loading Loading @@ -1290,10 +1284,9 @@ public final class InputMethodManager { void focusInLocked(View view) { void focusInLocked(View view) { if (DEBUG) Log.v(TAG, "focusIn: " + view); if (DEBUG) Log.v(TAG, "focusIn: " + view); if (mCurRootView != view.getRootView()) { if (!view.hasWindowFocus()) { // This is a request from a window that isn't in the window with // This is a request from a window that doesn't have window focus, so ignore it. // IME focus, so ignore it. if (DEBUG) Log.v(TAG, "Not focused window, ignoring"); if (DEBUG) Log.v(TAG, "Not IME target window, ignoring"); return; return; } } Loading @@ -1310,19 +1303,12 @@ public final class InputMethodManager { if (DEBUG) Log.v(TAG, "focusOut: " + view if (DEBUG) Log.v(TAG, "focusOut: " + view + " mServedView=" + mServedView + " mServedView=" + mServedView + " winFocus=" + view.hasWindowFocus()); + " winFocus=" + view.hasWindowFocus()); if (mServedView != view) { if (mServedView == view && view.hasWindowFocus()) { // The following code would auto-hide the IME if we end up // with no more views with focus. This can happen, however, // whenever we go into touch mode, so it ends up hiding // at times when we don't really want it to. For now it // seems better to just turn it all off. if (false && view.hasWindowFocus()) { mNextServedView = null; mNextServedView = null; scheduleCheckFocusLocked(view); scheduleCheckFocusLocked(view); } } } } } } } static void scheduleCheckFocusLocked(View view) { static void scheduleCheckFocusLocked(View view) { ViewRootImpl viewRootImpl = view.getViewRootImpl(); ViewRootImpl viewRootImpl = view.getViewRootImpl(); Loading Loading @@ -1442,13 +1428,6 @@ public final class InputMethodManager { } } } } /** @hide */ public void startGettingWindowFocus(View rootView) { synchronized (mH) { mCurRootView = rootView; } } /** /** * Report the current selection range. * Report the current selection range. * * Loading Loading @@ -2156,7 +2135,6 @@ public final class InputMethodManager { + " mBindSequence=" + mBindSequence + " mBindSequence=" + mBindSequence + " mCurId=" + mCurId); + " mCurId=" + mCurId); p.println(" mCurMethod=" + mCurMethod); p.println(" mCurMethod=" + mCurMethod); p.println(" mCurRootView=" + mCurRootView); p.println(" mServedView=" + mServedView); p.println(" mServedView=" + mServedView); p.println(" mNextServedView=" + mNextServedView); p.println(" mNextServedView=" + mNextServedView); p.println(" mServedConnecting=" + mServedConnecting); p.println(" mServedConnecting=" + mServedConnecting); Loading core/java/android/webkit/FindActionModeCallback.java +0 −1 Original line number Original line Diff line number Diff line Loading @@ -154,7 +154,6 @@ public class FindActionModeCallback implements ActionMode.Callback, TextWatcher, } } public void showSoftInput() { public void showSoftInput() { mInput.startGettingWindowFocus(mEditText.getRootView()); mInput.focusIn(mEditText); mInput.focusIn(mEditText); mInput.showSoftInput(mEditText, 0); mInput.showSoftInput(mEditText, 0); } } Loading Loading
core/java/android/view/ViewRootImpl.java +0 −5 Original line number Original line Diff line number Diff line Loading @@ -2018,7 +2018,6 @@ public final class ViewRootImpl implements ViewParent, mLastWasImTarget = imTarget; mLastWasImTarget = imTarget; InputMethodManager imm = InputMethodManager.peekInstance(); InputMethodManager imm = InputMethodManager.peekInstance(); if (imm != null && imTarget) { if (imm != null && imTarget) { imm.startGettingWindowFocus(mView); imm.onWindowFocus(mView, mView.findFocus(), imm.onWindowFocus(mView, mView.findFocus(), mWindowAttributes.softInputMode, mWindowAttributes.softInputMode, !mHasHadWindowFocus, mWindowAttributes.flags); !mHasHadWindowFocus, mWindowAttributes.flags); Loading Loading @@ -3322,10 +3321,6 @@ public final class ViewRootImpl implements ViewParent, InputMethodManager imm = InputMethodManager.peekInstance(); InputMethodManager imm = InputMethodManager.peekInstance(); if (mView != null) { if (mView != null) { if (hasWindowFocus && imm != null && mLastWasImTarget && !isInLocalFocusMode()) { imm.startGettingWindowFocus(mView); } mAttachInfo.mKeyDispatchState.reset(); mAttachInfo.mKeyDispatchState.reset(); mView.dispatchWindowFocusChanged(hasWindowFocus); mView.dispatchWindowFocusChanged(hasWindowFocus); mAttachInfo.mTreeObserver.dispatchOnWindowFocusChange(hasWindowFocus); mAttachInfo.mTreeObserver.dispatchOnWindowFocusChange(hasWindowFocus); Loading
core/java/android/view/inputmethod/InputMethodManager.java +7 −29 Original line number Original line Diff line number Diff line Loading @@ -282,11 +282,6 @@ public final class InputMethodManager { // ----------------------------------------------------------- // ----------------------------------------------------------- /** * This is the root view of the overall window that currently has input * method focus. */ View mCurRootView; /** /** * This is the view that should currently be served by an input method, * This is the view that should currently be served by an input method, * regardless of the state of setting that up. * regardless of the state of setting that up. Loading Loading @@ -806,7 +801,6 @@ public final class InputMethodManager { * Disconnect any existing input connection, clearing the served view. * Disconnect any existing input connection, clearing the served view. */ */ void finishInputLocked() { void finishInputLocked() { mCurRootView = null; mNextServedView = null; mNextServedView = null; if (mServedView != null) { if (mServedView != null) { if (DEBUG) Log.v(TAG, "FINISH INPUT: " + mServedView); if (DEBUG) Log.v(TAG, "FINISH INPUT: " + mServedView); Loading Loading @@ -1290,10 +1284,9 @@ public final class InputMethodManager { void focusInLocked(View view) { void focusInLocked(View view) { if (DEBUG) Log.v(TAG, "focusIn: " + view); if (DEBUG) Log.v(TAG, "focusIn: " + view); if (mCurRootView != view.getRootView()) { if (!view.hasWindowFocus()) { // This is a request from a window that isn't in the window with // This is a request from a window that doesn't have window focus, so ignore it. // IME focus, so ignore it. if (DEBUG) Log.v(TAG, "Not focused window, ignoring"); if (DEBUG) Log.v(TAG, "Not IME target window, ignoring"); return; return; } } Loading @@ -1310,19 +1303,12 @@ public final class InputMethodManager { if (DEBUG) Log.v(TAG, "focusOut: " + view if (DEBUG) Log.v(TAG, "focusOut: " + view + " mServedView=" + mServedView + " mServedView=" + mServedView + " winFocus=" + view.hasWindowFocus()); + " winFocus=" + view.hasWindowFocus()); if (mServedView != view) { if (mServedView == view && view.hasWindowFocus()) { // The following code would auto-hide the IME if we end up // with no more views with focus. This can happen, however, // whenever we go into touch mode, so it ends up hiding // at times when we don't really want it to. For now it // seems better to just turn it all off. if (false && view.hasWindowFocus()) { mNextServedView = null; mNextServedView = null; scheduleCheckFocusLocked(view); scheduleCheckFocusLocked(view); } } } } } } } static void scheduleCheckFocusLocked(View view) { static void scheduleCheckFocusLocked(View view) { ViewRootImpl viewRootImpl = view.getViewRootImpl(); ViewRootImpl viewRootImpl = view.getViewRootImpl(); Loading Loading @@ -1442,13 +1428,6 @@ public final class InputMethodManager { } } } } /** @hide */ public void startGettingWindowFocus(View rootView) { synchronized (mH) { mCurRootView = rootView; } } /** /** * Report the current selection range. * Report the current selection range. * * Loading Loading @@ -2156,7 +2135,6 @@ public final class InputMethodManager { + " mBindSequence=" + mBindSequence + " mBindSequence=" + mBindSequence + " mCurId=" + mCurId); + " mCurId=" + mCurId); p.println(" mCurMethod=" + mCurMethod); p.println(" mCurMethod=" + mCurMethod); p.println(" mCurRootView=" + mCurRootView); p.println(" mServedView=" + mServedView); p.println(" mServedView=" + mServedView); p.println(" mNextServedView=" + mNextServedView); p.println(" mNextServedView=" + mNextServedView); p.println(" mServedConnecting=" + mServedConnecting); p.println(" mServedConnecting=" + mServedConnecting); Loading
core/java/android/webkit/FindActionModeCallback.java +0 −1 Original line number Original line Diff line number Diff line Loading @@ -154,7 +154,6 @@ public class FindActionModeCallback implements ActionMode.Callback, TextWatcher, } } public void showSoftInput() { public void showSoftInput() { mInput.startGettingWindowFocus(mEditText.getRootView()); mInput.focusIn(mEditText); mInput.focusIn(mEditText); mInput.showSoftInput(mEditText, 0); mInput.showSoftInput(mEditText, 0); } } Loading