HomeSort by relevance Sort by last modified time
    Searched defs:inputMethodManager (Results 1 - 6 of 6) sorted by null

  /packages/apps/Contacts/src/com/android/contacts/group/
GroupBrowseListFragment.java 39 import android.view.inputmethod.InputMethodManager;
275 InputMethodManager inputMethodManager = (InputMethodManager)
277 inputMethodManager.hideSoftInputFromWindow(mListView.getWindowToken(), 0);
  /frameworks/base/core/java/android/widget/
TimePicker.java 32 import android.view.inputmethod.InputMethodManager;
571 InputMethodManager inputMethodManager = InputMethodManager.peekInstance();
572 if (inputMethodManager != null) {
573 if (inputMethodManager.isActive(mHourSpinnerInput)) {
575 inputMethodManager.hideSoftInputFromWindow(getWindowToken(), 0);
576 } else if (inputMethodManager.isActive(mMinuteSpinnerInput)) {
578 inputMethodManager.hideSoftInputFromWindow(getWindowToken(), 0);
579 } else if (inputMethodManager.isActive(mAmPmSpinnerInput))
    [all...]
DatePicker.java 36 import android.view.inputmethod.InputMethodManager;
752 InputMethodManager inputMethodManager = InputMethodManager.peekInstance();
753 if (inputMethodManager != null) {
754 if (inputMethodManager.isActive(mYearSpinnerInput)) {
756 inputMethodManager.hideSoftInputFromWindow(getWindowToken(), 0);
757 } else if (inputMethodManager.isActive(mMonthSpinnerInput)) {
759 inputMethodManager.hideSoftInputFromWindow(getWindowToken(), 0);
760 } else if (inputMethodManager.isActive(mDaySpinnerInput))
    [all...]
NumberPicker.java 51 import android.view.inputmethod.InputMethodManager;
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/list/
ContactEntryListFragment.java 48 import android.view.inputmethod.InputMethodManager;
833 InputMethodManager inputMethodManager = (InputMethodManager)
835 inputMethodManager.hideSoftInputFromWindow(mListView.getWindowToken(), 0);
  /packages/apps/Mms/src/com/android/mms/ui/
ComposeMessageActivity.java 110 import android.view.inputmethod.InputMethodManager;
    [all...]

Completed in 111 milliseconds