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

  /packages/apps/Messaging/src/com/android/messaging/util/
ImeUtil.java 21 import android.view.inputmethod.InputMethodManager;
64 final InputMethodManager inputMethodManager =
65 (InputMethodManager) context.getSystemService(Context.INPUT_METHOD_SERVICE);
66 if (inputMethodManager != null) {
67 inputMethodManager.hideSoftInputFromWindow(v.getWindowToken(), 0 /* flags */);
75 final InputMethodManager inputMethodManager =
76 (InputMethodManager) context.getSystemService(Context.INPUT_METHOD_SERVICE);
77 if (inputMethodManager != null)
    [all...]
  /packages/apps/Dialer/java/com/android/dialer/common/
UiUtil.java 22 import android.view.inputmethod.InputMethodManager;
29 InputMethodManager imm =
30 (InputMethodManager) context.getSystemService(Activity.INPUT_METHOD_SERVICE);
36 InputMethodManager inputMethodManager =
37 (InputMethodManager) context.getSystemService(Context.INPUT_METHOD_SERVICE);
38 inputMethodManager.toggleSoftInputFromWindow(
39 view.getApplicationWindowToken(), InputMethodManager.SHOW_FORCED, 0);
  /frameworks/base/core/java/android/widget/
DatePickerSpinnerDelegate.java 32 import android.view.inputmethod.InputMethodManager;
636 InputMethodManager inputMethodManager = InputMethodManager.peekInstance();
637 if (inputMethodManager != null) {
638 if (inputMethodManager.isActive(mYearSpinnerInput)) {
640 inputMethodManager.hideSoftInputFromWindow(mDelegator.getWindowToken(), 0);
641 } else if (inputMethodManager.isActive(mMonthSpinnerInput)) {
643 inputMethodManager.hideSoftInputFromWindow(mDelegator.getWindowToken(), 0);
644 } else if (inputMethodManager.isActive(mDaySpinnerInput))
    [all...]
TimePickerSpinnerDelegate.java 34 import android.view.inputmethod.InputMethodManager;
474 InputMethodManager inputMethodManager = InputMethodManager.peekInstance();
475 if (inputMethodManager != null) {
476 if (inputMethodManager.isActive(mHourSpinnerInput)) {
478 inputMethodManager.hideSoftInputFromWindow(mDelegator.getWindowToken(), 0);
479 } else if (inputMethodManager.isActive(mMinuteSpinnerInput)) {
481 inputMethodManager.hideSoftInputFromWindow(mDelegator.getWindowToken(), 0);
482 } else if (inputMethodManager.isActive(mAmPmSpinnerInput))
    [all...]
NumberPicker.java 54 import android.view.inputmethod.InputMethodManager;
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
RichInputMethodManager.java 30 import android.view.inputmethod.InputMethodManager;
53 * Enrichment class for InputMethodManager to simplify interaction and add functionality.
120 public InputMethodManager getInputMethodManager() {
135 // Was not able to call {@link InputMethodManager#switchToNextInputMethodIBinder,boolean)}
145 final InputMethodManager imm = mImmWrapper.mImm;
167 final InputMethodManager imm = mImmWrapper.mImm;
200 // This method mimics {@link InputMethodManager#switchToNextInputMethod(IBinder,boolean)}.
230 private final InputMethodManager mImm;
239 public InputMethodInfoCache(final InputMethodManager imm, final String imePackageName) {
500 // {@link InputMethodManager#shouldOfferSwitchingToNextInputMethod} isn't yet availabl
    [all...]
  /frameworks/base/services/devicepolicy/java/com/android/server/devicepolicy/
DevicePolicyManagerService.java 166 import android.view.inputmethod.InputMethodManager;
    [all...]
  /prebuilts/tools/common/m2/repository/com/jayway/android/robotium/robotium-solo/5.5.3/
robotium-solo-5.5.3.jar 

Completed in 343 milliseconds