Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/widget/
DTimePicker.java571 InputMethodManager inputMethodManager = InputMethodManager.peekInstance(); in updateInputState() local
572 if (inputMethodManager != null) { in updateInputState()
573 if (inputMethodManager.isActive(mHourSpinnerInput)) { in updateInputState()
575 inputMethodManager.hideSoftInputFromWindow(getWindowToken(), 0); in updateInputState()
576 } else if (inputMethodManager.isActive(mMinuteSpinnerInput)) { in updateInputState()
578 inputMethodManager.hideSoftInputFromWindow(getWindowToken(), 0); in updateInputState()
579 } else if (inputMethodManager.isActive(mAmPmSpinnerInput)) { in updateInputState()
581 inputMethodManager.hideSoftInputFromWindow(getWindowToken(), 0); in updateInputState()
DDatePicker.java752 InputMethodManager inputMethodManager = InputMethodManager.peekInstance(); in updateInputState() local
753 if (inputMethodManager != null) { in updateInputState()
754 if (inputMethodManager.isActive(mYearSpinnerInput)) { in updateInputState()
756 inputMethodManager.hideSoftInputFromWindow(getWindowToken(), 0); in updateInputState()
757 } else if (inputMethodManager.isActive(mMonthSpinnerInput)) { in updateInputState()
759 inputMethodManager.hideSoftInputFromWindow(getWindowToken(), 0); in updateInputState()
760 } else if (inputMethodManager.isActive(mDaySpinnerInput)) { in updateInputState()
762 inputMethodManager.hideSoftInputFromWindow(getWindowToken(), 0); in updateInputState()
DNumberPicker.java1180 InputMethodManager inputMethodManager = InputMethodManager.peekInstance(); in showSoftInput() local
1181 if (inputMethodManager != null) { in showSoftInput()
1186 inputMethodManager.showSoftInput(mInputText, 0); in showSoftInput()
1194 InputMethodManager inputMethodManager = InputMethodManager.peekInstance(); in hideSoftInput() local
1195 if (inputMethodManager != null && inputMethodManager.isActive(mInputText)) { in hideSoftInput()
1196 inputMethodManager.hideSoftInputFromWindow(getWindowToken(), 0); in hideSoftInput()
/frameworks/base/core/java/android/view/inputmethod/
DInputMethodManager.java488 final InputMethodManager inputMethodManager) { in ControlledInputConnectionWrapper() argument
490 mParentInputMethodManager = inputMethodManager; in ControlledInputConnectionWrapper()