Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/widget/
DTimePickerSpinnerDelegate.java472 InputMethodManager inputMethodManager = mContext.getSystemService(InputMethodManager.class); in updateInputState() local
473 if (inputMethodManager != null) { in updateInputState()
474 if (inputMethodManager.isActive(mHourSpinnerInput)) { in updateInputState()
476 inputMethodManager.hideSoftInputFromWindow(mDelegator.getWindowToken(), 0); in updateInputState()
477 } else if (inputMethodManager.isActive(mMinuteSpinnerInput)) { in updateInputState()
479 inputMethodManager.hideSoftInputFromWindow(mDelegator.getWindowToken(), 0); in updateInputState()
480 } else if (inputMethodManager.isActive(mAmPmSpinnerInput)) { in updateInputState()
482 inputMethodManager.hideSoftInputFromWindow(mDelegator.getWindowToken(), 0); in updateInputState()
DDatePickerSpinnerDelegate.java640 InputMethodManager inputMethodManager = mContext.getSystemService(InputMethodManager.class); in updateInputState() local
641 if (inputMethodManager != null) { in updateInputState()
642 if (inputMethodManager.isActive(mYearSpinnerInput)) { in updateInputState()
644 inputMethodManager.hideSoftInputFromWindow(mDelegator.getWindowToken(), 0); in updateInputState()
645 } else if (inputMethodManager.isActive(mMonthSpinnerInput)) { in updateInputState()
647 inputMethodManager.hideSoftInputFromWindow(mDelegator.getWindowToken(), 0); in updateInputState()
648 } else if (inputMethodManager.isActive(mDaySpinnerInput)) { in updateInputState()
650 inputMethodManager.hideSoftInputFromWindow(mDelegator.getWindowToken(), 0); in updateInputState()
DNumberPicker.java1314 InputMethodManager inputMethodManager = in showSoftInput() local
1316 if (inputMethodManager != null) { in showSoftInput()
1321 inputMethodManager.showSoftInput(mInputText, 0); in showSoftInput()
1329 InputMethodManager inputMethodManager = in hideSoftInput() local
1331 if (inputMethodManager != null && inputMethodManager.isActive(mInputText)) { in hideSoftInput()
1332 inputMethodManager.hideSoftInputFromWindow(getWindowToken(), 0); in hideSoftInput()
/frameworks/base/core/java/android/view/inputmethod/
DInputMethodManager.java754 final InputMethodManager inputMethodManager) { in ControlledInputConnectionWrapper() argument
756 mParentInputMethodManager = inputMethodManager; in ControlledInputConnectionWrapper()