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

  /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/group/
GroupBrowseListFragment.java 39 import android.view.inputmethod.InputMethodManager;
275 InputMethodManager inputMethodManager = (InputMethodManager)
277 inputMethodManager.hideSoftInputFromWindow(mListView.getWindowToken(), 0);
  /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);
  /frameworks/base/core/java/android/view/inputmethod/
InputMethodManager.java 198 public final class InputMethodManager {
200 static final String TAG = "InputMethodManager";
203 static InputMethodManager mInstance;
464 private final InputMethodManager mParentInputMethodManager;
468 final InputMethodManager inputMethodManager) {
470 mParentInputMethodManager = inputMethodManager;
526 InputMethodManager.this.finishedEvent(seq, handled);
535 InputMethodManager(IInputMethodManager service, Looper looper) {
548 * Retrieve the global InputMethodManager instance, creating it if i
    [all...]
  /packages/apps/Mms/src/com/android/mms/ui/
ComposeMessageActivity.java 110 import android.view.inputmethod.InputMethodManager;
    [all...]

Completed in 297 milliseconds