Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/widget/
DTimePickerSpinnerDelegate.java427 InputMethodManager inputMethodManager = InputMethodManager.peekInstance(); in updateInputState() local
428 if (inputMethodManager != null) { in updateInputState()
429 if (inputMethodManager.isActive(mHourSpinnerInput)) { in updateInputState()
431 inputMethodManager.hideSoftInputFromWindow(mDelegator.getWindowToken(), 0); in updateInputState()
432 } else if (inputMethodManager.isActive(mMinuteSpinnerInput)) { in updateInputState()
434 inputMethodManager.hideSoftInputFromWindow(mDelegator.getWindowToken(), 0); in updateInputState()
435 } else if (inputMethodManager.isActive(mAmPmSpinnerInput)) { in updateInputState()
437 inputMethodManager.hideSoftInputFromWindow(mDelegator.getWindowToken(), 0); in updateInputState()
DDatePickerSpinnerDelegate.java641 InputMethodManager inputMethodManager = InputMethodManager.peekInstance(); in updateInputState() local
642 if (inputMethodManager != null) { in updateInputState()
643 if (inputMethodManager.isActive(mYearSpinnerInput)) { in updateInputState()
645 inputMethodManager.hideSoftInputFromWindow(mDelegator.getWindowToken(), 0); in updateInputState()
646 } else if (inputMethodManager.isActive(mMonthSpinnerInput)) { in updateInputState()
648 inputMethodManager.hideSoftInputFromWindow(mDelegator.getWindowToken(), 0); in updateInputState()
649 } else if (inputMethodManager.isActive(mDaySpinnerInput)) { in updateInputState()
651 inputMethodManager.hideSoftInputFromWindow(mDelegator.getWindowToken(), 0); in updateInputState()
DNumberPicker.java1265 InputMethodManager inputMethodManager = InputMethodManager.peekInstance(); in showSoftInput() local
1266 if (inputMethodManager != null) { in showSoftInput()
1271 inputMethodManager.showSoftInput(mInputText, 0); in showSoftInput()
1279 InputMethodManager inputMethodManager = InputMethodManager.peekInstance(); in hideSoftInput() local
1280 if (inputMethodManager != null && inputMethodManager.isActive(mInputText)) { in hideSoftInput()
1281 inputMethodManager.hideSoftInputFromWindow(getWindowToken(), 0); in hideSoftInput()
/frameworks/base/core/java/android/view/inputmethod/
DInputMethodManager.java532 final InputMethodManager inputMethodManager) { in ControlledInputConnectionWrapper() argument
534 mParentInputMethodManager = inputMethodManager; in ControlledInputConnectionWrapper()
/frameworks/base/services/devicepolicy/java/com/android/server/devicepolicy/
DDevicePolicyManagerService.java6947 InputMethodManager inputMethodManager = in setPermittedInputMethods() local
6949 List<InputMethodInfo> enabledImes = inputMethodManager.getEnabledInputMethodList(); in setPermittedInputMethods()
7026 InputMethodManager inputMethodManager = in getPermittedInputMethodsForCurrentUser() local
7028 List<InputMethodInfo> imes = inputMethodManager.getInputMethodList(); in getPermittedInputMethodsForCurrentUser()