Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/widget/
DTimePickerSpinnerDelegate.java474 InputMethodManager inputMethodManager = mContext.getSystemService(InputMethodManager.class); in updateInputState() local
475 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()
DDatePickerSpinnerDelegate.java642 InputMethodManager inputMethodManager = mContext.getSystemService(InputMethodManager.class); in updateInputState() local
643 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()
DNumberPicker.java1313 InputMethodManager inputMethodManager = in showSoftInput() local
1315 if (inputMethodManager != null) { in showSoftInput()
1320 inputMethodManager.showSoftInput(mInputText, 0); in showSoftInput()
1328 InputMethodManager inputMethodManager = in hideSoftInput() local
1330 if (inputMethodManager != null && inputMethodManager.isActive(mInputText)) { in hideSoftInput()
1331 inputMethodManager.hideSoftInputFromWindow(getWindowToken(), 0); in hideSoftInput()
/frameworks/base/core/java/android/view/inputmethod/
DInputMethodManager.java753 final InputMethodManager inputMethodManager) { in ControlledInputConnectionWrapper() argument
755 mParentInputMethodManager = inputMethodManager; in ControlledInputConnectionWrapper()