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/Contacts/src/com/android/contacts/group/
GroupBrowseListFragment.java 39 import android.view.inputmethod.InputMethodManager;
278 InputMethodManager inputMethodManager = (InputMethodManager)
280 inputMethodManager.hideSoftInputFromWindow(mListView.getWindowToken(), 0);
  /packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/task/
DeleteNonRequiredAppsTask.java 36 import android.view.inputmethod.InputMethodManager;
248 final InputMethodManager inputMethodManager =
249 (InputMethodManager) mContext.getSystemService(Context.INPUT_METHOD_SERVICE);
250 List<InputMethodInfo> inputMethods = inputMethodManager.getInputMethodList();
  /frameworks/base/core/java/android/widget/
TimePickerSpinnerDelegate.java 32 import android.view.inputmethod.InputMethodManager;
434 InputMethodManager inputMethodManager = InputMethodManager.peekInstance();
435 if (inputMethodManager != null) {
436 if (inputMethodManager.isActive(mHourSpinnerInput)) {
438 inputMethodManager.hideSoftInputFromWindow(mDelegator.getWindowToken(), 0);
439 } else if (inputMethodManager.isActive(mMinuteSpinnerInput)) {
441 inputMethodManager.hideSoftInputFromWindow(mDelegator.getWindowToken(), 0);
442 } else if (inputMethodManager.isActive(mAmPmSpinnerInput))
    [all...]
NumberPicker.java 53 import android.view.inputmethod.InputMethodManager;
    [all...]
DatePicker.java 37 import android.view.inputmethod.InputMethodManager;
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
RichInputMethodManager.java 30 import android.view.inputmethod.InputMethodManager;
52 * Enrichment class for InputMethodManager to simplify interaction and add functionality.
119 public InputMethodManager getInputMethodManager() {
134 // Was not able to call {@link InputMethodManager#switchToNextInputMethodIBinder,boolean)}
144 final InputMethodManager imm = mImmWrapper.mImm;
166 final InputMethodManager imm = mImmWrapper.mImm;
199 // This method mimics {@link InputMethodManager#switchToNextInputMethod(IBinder,boolean)}.
229 private final InputMethodManager mImm;
238 public InputMethodInfoCache(final InputMethodManager imm, final String imePackageName) {
459 // {@link InputMethodManager#shouldOfferSwitchingToNextInputMethod} isn't yet availabl
    [all...]
  /frameworks/base/services/devicepolicy/java/com/android/server/devicepolicy/
DevicePolicyManagerService.java 108 import android.view.inputmethod.InputMethodManager;
    [all...]

Completed in 1080 milliseconds