Searched refs:inputMethodManager (Results 1 – 4 of 4) sorted by relevance
571 InputMethodManager inputMethodManager = InputMethodManager.peekInstance(); in updateInputState() local572 if (inputMethodManager != null) { in updateInputState()573 if (inputMethodManager.isActive(mHourSpinnerInput)) { in updateInputState()575 inputMethodManager.hideSoftInputFromWindow(getWindowToken(), 0); in updateInputState()576 } else if (inputMethodManager.isActive(mMinuteSpinnerInput)) { in updateInputState()578 inputMethodManager.hideSoftInputFromWindow(getWindowToken(), 0); in updateInputState()579 } else if (inputMethodManager.isActive(mAmPmSpinnerInput)) { in updateInputState()581 inputMethodManager.hideSoftInputFromWindow(getWindowToken(), 0); in updateInputState()
752 InputMethodManager inputMethodManager = InputMethodManager.peekInstance(); in updateInputState() local753 if (inputMethodManager != null) { in updateInputState()754 if (inputMethodManager.isActive(mYearSpinnerInput)) { in updateInputState()756 inputMethodManager.hideSoftInputFromWindow(getWindowToken(), 0); in updateInputState()757 } else if (inputMethodManager.isActive(mMonthSpinnerInput)) { in updateInputState()759 inputMethodManager.hideSoftInputFromWindow(getWindowToken(), 0); in updateInputState()760 } else if (inputMethodManager.isActive(mDaySpinnerInput)) { in updateInputState()762 inputMethodManager.hideSoftInputFromWindow(getWindowToken(), 0); in updateInputState()
1180 InputMethodManager inputMethodManager = InputMethodManager.peekInstance(); in showSoftInput() local1181 if (inputMethodManager != null) { in showSoftInput()1186 inputMethodManager.showSoftInput(mInputText, 0); in showSoftInput()1194 InputMethodManager inputMethodManager = InputMethodManager.peekInstance(); in hideSoftInput() local1195 if (inputMethodManager != null && inputMethodManager.isActive(mInputText)) { in hideSoftInput()1196 inputMethodManager.hideSoftInputFromWindow(getWindowToken(), 0); in hideSoftInput()
488 final InputMethodManager inputMethodManager) { in ControlledInputConnectionWrapper() argument490 mParentInputMethodManager = inputMethodManager; in ControlledInputConnectionWrapper()