HomeSort by relevance Sort by last modified time
    Searched refs:inputMethodManager (Results 1 - 15 of 15) 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/apps/TvSettings/Settings/src/com/android/tv/settings/connectivity/setup/
PasswordInputWizardFragment.java 30 import android.view.inputmethod.InputMethodManager;
165 InputMethodManager inputMethodManager =
166 (InputMethodManager) a.getSystemService(Context.INPUT_METHOD_SERVICE);
169 inputMethodManager.viewClicked(mTextInput);
170 inputMethodManager.showSoftInput(mTextInput, 0);
184 InputMethodManager imm =
185 (InputMethodManager) getActivity().getSystemService(Context.INPUT_METHOD_SERVICE);
TextInputWizardFragment.java 30 import android.view.inputmethod.InputMethodManager;
165 InputMethodManager inputMethodManager = (InputMethodManager) a.getSystemService(
167 inputMethodManager.showSoftInput(mTextInput, 0);
176 InputMethodManager imm = (InputMethodManager) getActivity()
SelectFromListWizardFragment.java 43 import android.view.inputmethod.InputMethodManager;
597 InputMethodManager inputMethodManager = (InputMethodManager) getActivity()
599 inputMethodManager.hideSoftInputFromWindow(
  /packages/services/Telecomm/src/com/android/server/telecom/settings/
BlockedNumbersActivity.java 43 import android.view.inputmethod.InputMethodManager;
235 InputMethodManager inputMethodManager =
236 (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
237 inputMethodManager.showSoftInput(editText,
238 InputMethodManager.SHOW_IMPLICIT);
  /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...]
  /packages/apps/Contacts/src/com/android/contacts/list/
ContactEntryListFragment.java 41 import android.view.inputmethod.InputMethodManager;
887 InputMethodManager inputMethodManager = (InputMethodManager)
889 inputMethodManager.hideSoftInputFromWindow(mListView.getWindowToken(), 0);
    [all...]
  /packages/apps/Dialer/java/com/android/contacts/common/list/
ContactEntryListFragment.java 39 import android.view.inputmethod.InputMethodManager;
792 InputMethodManager inputMethodManager =
793 (InputMethodManager) mContext.getSystemService(Context.INPUT_METHOD_SERVICE);
794 inputMethodManager.hideSoftInputFromWindow(mListView.getWindowToken(), 0);
  /frameworks/base/core/java/android/view/inputmethod/
InputMethodManager.java 214 public final class InputMethodManager {
216 static final String TAG = "InputMethodManager";
220 static InputMethodManager sInstance;
549 private final InputMethodManager mParentInputMethodManager;
552 final InputMethodManager inputMethodManager) {
554 mParentInputMethodManager = inputMethodManager;
642 InputMethodManager(Looper looper) throws ServiceNotFoundException {
647 InputMethodManager(IInputMethodManager service, Looper looper) {
656 * Retrieve the global InputMethodManager instance, creating it if i
    [all...]
  /prebuilts/tools/common/m2/repository/com/jayway/android/robotium/robotium-solo/5.5.3/
robotium-solo-5.5.3.jar 
  /frameworks/base/services/devicepolicy/java/com/android/server/devicepolicy/
DevicePolicyManagerService.java 166 import android.view.inputmethod.InputMethodManager;
    [all...]

Completed in 476 milliseconds