Home
last modified time | relevance | path

Searched refs:inputMethodManager (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/core/java/android/widget/
DTimePickerSpinnerDelegate.java446 InputMethodManager inputMethodManager = InputMethodManager.peekInstance(); in updateInputState() local
447 if (inputMethodManager != null) { in updateInputState()
448 if (inputMethodManager.isActive(mHourSpinnerInput)) { in updateInputState()
450 inputMethodManager.hideSoftInputFromWindow(mDelegator.getWindowToken(), 0); in updateInputState()
451 } else if (inputMethodManager.isActive(mMinuteSpinnerInput)) { in updateInputState()
453 inputMethodManager.hideSoftInputFromWindow(mDelegator.getWindowToken(), 0); in updateInputState()
454 } else if (inputMethodManager.isActive(mAmPmSpinnerInput)) { in updateInputState()
456 inputMethodManager.hideSoftInputFromWindow(mDelegator.getWindowToken(), 0); in updateInputState()
DDatePicker.java1133 InputMethodManager inputMethodManager = InputMethodManager.peekInstance(); in updateInputState() local
1134 if (inputMethodManager != null) { in updateInputState()
1135 if (inputMethodManager.isActive(mYearSpinnerInput)) { in updateInputState()
1137 inputMethodManager.hideSoftInputFromWindow(mDelegator.getWindowToken(), 0); in updateInputState()
1138 } else if (inputMethodManager.isActive(mMonthSpinnerInput)) { in updateInputState()
1140 inputMethodManager.hideSoftInputFromWindow(mDelegator.getWindowToken(), 0); in updateInputState()
1141 } else if (inputMethodManager.isActive(mDaySpinnerInput)) { in updateInputState()
1143 inputMethodManager.hideSoftInputFromWindow(mDelegator.getWindowToken(), 0); in updateInputState()
DNumberPicker.java1250 InputMethodManager inputMethodManager = InputMethodManager.peekInstance(); in showSoftInput() local
1251 if (inputMethodManager != null) { in showSoftInput()
1256 inputMethodManager.showSoftInput(mInputText, 0); in showSoftInput()
1264 InputMethodManager inputMethodManager = InputMethodManager.peekInstance(); in hideSoftInput() local
1265 if (inputMethodManager != null && inputMethodManager.isActive(mInputText)) { in hideSoftInput()
1266 inputMethodManager.hideSoftInputFromWindow(getWindowToken(), 0); in hideSoftInput()
/frameworks/base/core/java/android/view/inputmethod/
DInputMethodManager.java541 final InputMethodManager inputMethodManager) { in ControlledInputConnectionWrapper() argument
543 mParentInputMethodManager = inputMethodManager; in ControlledInputConnectionWrapper()
/frameworks/base/services/devicepolicy/java/com/android/server/devicepolicy/
DDevicePolicyManagerService.java4604 InputMethodManager inputMethodManager = (InputMethodManager) mContext in setPermittedInputMethods() local
4606 List<InputMethodInfo> enabledImes = inputMethodManager.getEnabledInputMethodList(); in setPermittedInputMethods()
4686 InputMethodManager inputMethodManager = (InputMethodManager) mContext in getPermittedInputMethodsForCurrentUser() local
4688 List<InputMethodInfo> imes = inputMethodManager.getInputMethodList(); in getPermittedInputMethodsForCurrentUser()