Searched refs:inputMethodManager (Results 1 – 4 of 4) sorted by relevance
474 InputMethodManager inputMethodManager = mContext.getSystemService(InputMethodManager.class); in updateInputState() local475 if (inputMethodManager != null) { in updateInputState()476 if (inputMethodManager.isActive(mHourSpinnerInput)) { in updateInputState()478 inputMethodManager.hideSoftInputFromWindow(mDelegator.getWindowToken(), 0); in updateInputState()479 } else if (inputMethodManager.isActive(mMinuteSpinnerInput)) { in updateInputState()481 inputMethodManager.hideSoftInputFromWindow(mDelegator.getWindowToken(), 0); in updateInputState()482 } else if (inputMethodManager.isActive(mAmPmSpinnerInput)) { in updateInputState()484 inputMethodManager.hideSoftInputFromWindow(mDelegator.getWindowToken(), 0); in updateInputState()
642 InputMethodManager inputMethodManager = mContext.getSystemService(InputMethodManager.class); in updateInputState() local643 if (inputMethodManager != null) { in updateInputState()644 if (inputMethodManager.isActive(mYearSpinnerInput)) { in updateInputState()646 inputMethodManager.hideSoftInputFromWindow(mDelegator.getWindowToken(), 0); in updateInputState()647 } else if (inputMethodManager.isActive(mMonthSpinnerInput)) { in updateInputState()649 inputMethodManager.hideSoftInputFromWindow(mDelegator.getWindowToken(), 0); in updateInputState()650 } else if (inputMethodManager.isActive(mDaySpinnerInput)) { in updateInputState()652 inputMethodManager.hideSoftInputFromWindow(mDelegator.getWindowToken(), 0); in updateInputState()
1313 InputMethodManager inputMethodManager = in showSoftInput() local1315 if (inputMethodManager != null) { in showSoftInput()1320 inputMethodManager.showSoftInput(mInputText, 0); in showSoftInput()1328 InputMethodManager inputMethodManager = in hideSoftInput() local1330 if (inputMethodManager != null && inputMethodManager.isActive(mInputText)) { in hideSoftInput()1331 inputMethodManager.hideSoftInputFromWindow(getWindowToken(), 0); in hideSoftInput()
753 final InputMethodManager inputMethodManager) { in ControlledInputConnectionWrapper() argument755 mParentInputMethodManager = inputMethodManager; in ControlledInputConnectionWrapper()