Searched refs:inputMethodManager (Results 1 – 4 of 4) sorted by relevance
472 InputMethodManager inputMethodManager = mContext.getSystemService(InputMethodManager.class); in updateInputState() local473 if (inputMethodManager != null) { in updateInputState()474 if (inputMethodManager.isActive(mHourSpinnerInput)) { in updateInputState()476 inputMethodManager.hideSoftInputFromWindow(mDelegator.getWindowToken(), 0); in updateInputState()477 } else if (inputMethodManager.isActive(mMinuteSpinnerInput)) { in updateInputState()479 inputMethodManager.hideSoftInputFromWindow(mDelegator.getWindowToken(), 0); in updateInputState()480 } else if (inputMethodManager.isActive(mAmPmSpinnerInput)) { in updateInputState()482 inputMethodManager.hideSoftInputFromWindow(mDelegator.getWindowToken(), 0); in updateInputState()
640 InputMethodManager inputMethodManager = mContext.getSystemService(InputMethodManager.class); in updateInputState() local641 if (inputMethodManager != null) { in updateInputState()642 if (inputMethodManager.isActive(mYearSpinnerInput)) { in updateInputState()644 inputMethodManager.hideSoftInputFromWindow(mDelegator.getWindowToken(), 0); in updateInputState()645 } else if (inputMethodManager.isActive(mMonthSpinnerInput)) { in updateInputState()647 inputMethodManager.hideSoftInputFromWindow(mDelegator.getWindowToken(), 0); in updateInputState()648 } else if (inputMethodManager.isActive(mDaySpinnerInput)) { in updateInputState()650 inputMethodManager.hideSoftInputFromWindow(mDelegator.getWindowToken(), 0); in updateInputState()
1314 InputMethodManager inputMethodManager = in showSoftInput() local1316 if (inputMethodManager != null) { in showSoftInput()1321 inputMethodManager.showSoftInput(mInputText, 0); in showSoftInput()1329 InputMethodManager inputMethodManager = in hideSoftInput() local1331 if (inputMethodManager != null && inputMethodManager.isActive(mInputText)) { in hideSoftInput()1332 inputMethodManager.hideSoftInputFromWindow(getWindowToken(), 0); in hideSoftInput()
754 final InputMethodManager inputMethodManager) { in ControlledInputConnectionWrapper() argument756 mParentInputMethodManager = inputMethodManager; in ControlledInputConnectionWrapper()