Searched refs:imm (Results 1 - 21 of 21) sorted by relevance

/packages/apps/Contacts/src/com/android/contacts/dialpad/
H A DDigitsEditText.java41 final InputMethodManager imm = ((InputMethodManager) getContext()
43 if (imm != null && imm.isActive(this)) {
44 imm.hideSoftInputFromWindow(getApplicationWindowToken(), 0);
52 final InputMethodManager imm = ((InputMethodManager) getContext()
54 if (imm != null && imm.isActive(this)) {
55 imm.hideSoftInputFromWindow(getApplicationWindowToken(), 0);
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ui/
H A DQueryTextView.java77 InputMethodManager imm = getInputMethodManager();
78 if (imm != null) {
79 imm.showSoftInput(this, 0);
84 InputMethodManager imm = getInputMethodManager();
85 if (imm != null) {
86 imm.hideSoftInputFromWindow(getWindowToken(), 0);
H A DSearchActivityView.java385 InputMethodManager imm = (InputMethodManager)
387 if (imm != null) {
388 imm.hideSoftInputFromWindow(getWindowToken(), 0);
428 InputMethodManager imm = (InputMethodManager)
430 if (imm == null || !imm.isFullscreenMode()) return;
435 imm.displayCompletions(mQueryTextView, completions);
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
H A DImfUtils.java51 final InputMethodManager imm = getInputMethodManager(context);
53 for (final InputMethodInfo imi : imm.getInputMethodList()) {
69 final InputMethodManager imm = getInputMethodManager(context);
71 final List<InputMethodSubtype> subtypes = imm.getEnabledInputMethodSubtypeList(myImi, true);
95 final InputMethodManager imm = getInputMethodManager(context);
96 final InputMethodSubtype currentSubtype = imm.getCurrentInputMethodSubtype();
102 final InputMethodManager imm = getInputMethodManager(context);
103 final List<InputMethodInfo> enabledImis = imm.getEnabledInputMethodList();
116 final InputMethodManager imm = getInputMethodManager(context);
125 imm
[all...]
H A DSubtypeSwitcher.java224 final InputMethodManager imm = mImm;
228 imm.setInputMethodAndSubtype(token, imiId, subtype);
H A DLatinIME.java378 public void switchSubtype(final IBinder token, final InputMethodManagerCompatWrapper imm, argument
380 final InputMethodSubtype currentSubtype = imm.getCurrentInputMethodSubtype();
391 imm.setInputMethodAndSubtype(token, id, lastActiveSubtype);
394 imm.switchToNextInputMethod(token, true /* onlyCurrentIme */);
/packages/apps/Email/src/com/android/email/activity/setup/
H A DAccountServerBaseFragment.java191 InputMethodManager imm =
193 imm.hideSoftInputFromWindow(getView().getWindowToken(), 0);
266 InputMethodManager imm = (InputMethodManager)mContext.
268 imm.hideSoftInputFromWindow(getView().getWindowToken(), 0);
303 InputMethodManager imm = (InputMethodManager) context.getSystemService(
305 if (imm != null && imm.isActive()) {
306 imm.hideSoftInputFromWindow(getView().getWindowToken(), 0);
/packages/apps/Settings/src/com/android/settings/
H A DCryptKeeper.java524 final InputMethodManager imm = (InputMethodManager) getSystemService(
526 if (imeSwitcher != null && hasMultipleEnabledIMEsOrSubtypes(imm, false)) {
531 imm.showInputMethodPicker();
551 imm.showSoftInputUnchecked(0, null);
564 * @param imm The input method manager
568 private boolean hasMultipleEnabledIMEsOrSubtypes(InputMethodManager imm, argument
570 final List<InputMethodInfo> enabledImis = imm.getEnabledInputMethodList();
579 imm.getEnabledInputMethodSubtypeList(imi, true);
604 // imm.getEnabledInputMethodSubtypeList(null, false) will return the current IME's enabled
606 || imm
[all...]
/packages/apps/Contacts/src/com/android/contacts/activities/
H A DJoinContactActivity.java236 final InputMethodManager imm = (InputMethodManager)
238 if (imm != null) {
239 if (!imm.showSoftInput(view, 0)) {
H A DActionBarAdapter.java490 InputMethodManager imm = (InputMethodManager) mContext.getSystemService(
492 if (imm != null) {
493 imm.hideSoftInputFromWindow(mSearchView.getWindowToken(), 0);
H A DDialtactsActivity.java1136 InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
1137 if (imm != null) {
1138 if (!imm.showSoftInput(view, 0)) {
1145 InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
1146 if (imm != null && view != null) {
1147 imm.hideSoftInputFromWindow(view.getWindowToken(), 0);
H A DContactSelectionActivity.java598 final InputMethodManager imm = (InputMethodManager)
600 if (imm != null) {
601 if (!imm.showSoftInput(view, 0)) {
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
H A DInputTestsBase.java164 final InputMethodManager imm = (InputMethodManager)mLatinIME.getSystemService(
169 for (final InputMethodInfo imi : imm.getInputMethodList()) {
/packages/apps/Contacts/src/com/android/contacts/editor/
H A DTextFieldsEditorView.java117 InputMethodManager imm =
119 if (imm != null) {
120 if (!imm.showSoftInput(editor, InputMethodManager.SHOW_IMPLICIT)) {
/packages/apps/Browser/src/com/android/browser/
H A DAutoFillSettingsFragment.java282 InputMethodManager imm = (InputMethodManager) getActivity().getSystemService(
284 imm.hideSoftInputFromWindow(getView().getWindowToken(), 0);
H A DAddBookmarkPage.java278 InputMethodManager imm = getInputMethodManager();
281 imm.focusIn(mListView);
282 imm.showSoftInput(mFolderNamer, InputMethodManager.SHOW_IMPLICIT);
/packages/apps/Settings/src/com/android/settings/inputmethod/
H A DInputMethodPreference.java83 InputMethodManager imm, InputMethodInfo imi, int imiCount) {
89 mImm = imm;
82 InputMethodPreference(SettingsPreferenceFragment fragment, Intent settingsIntent, InputMethodManager imm, InputMethodInfo imi, int imiCount) argument
H A DInputMethodAndSubtypeEnabler.java207 InputMethodManager imm = (InputMethodManager) getSystemService(
211 mInputMethodProperties = imm.getInputMethodList();
H A DInputMethodAndSubtypeUtil.java158 InputMethodManager imm, List<InputMethodInfo> imis, PackageManager pm) {
165 final InputMethodSubtype subtype = imm.getCurrentInputMethodSubtype();
157 getCurrentInputMethodName(Context context, ContentResolver resolver, InputMethodManager imm, List<InputMethodInfo> imis, PackageManager pm) argument
H A DInputMethodAndLanguageSettings.java317 final InputMethodManager imm = (InputMethodManager)
319 imm.showInputMethodPicker();
/packages/apps/Launcher2/src/com/android/launcher2/
H A DLauncher.java1424 InputMethodManager imm = (InputMethodManager)getSystemService(
1426 imm.hideSoftInputFromWindow(v.getWindowToken(), 0);

Completed in 7680 milliseconds