HomeSort by relevance Sort by last modified time
    Searched refs:InputMethodManager (Results 1 - 25 of 48) sorted by null

1 2

  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ui/
QueryTextView.java 22 import android.view.inputmethod.InputMethodManager;
72 private InputMethodManager getInputMethodManager() {
73 return (InputMethodManager) getContext().getSystemService(Context.INPUT_METHOD_SERVICE);
77 InputMethodManager imm = getInputMethodManager();
84 InputMethodManager imm = getInputMethodManager();
SearchActivityView.java 23 import android.view.inputmethod.InputMethodManager;
56 InputMethodManager imm = (InputMethodManager)
  /frameworks/base/tests/ImfTest/src/com/android/imftest/samples/
ButtonActivity.java 24 import android.view.inputmethod.InputMethodManager;
50 InputMethodManager imm = InputMethodManager.getInstance(instance);
AutoCompleteTextViewActivityPortrait.java 26 import android.view.inputmethod.InputMethodManager;
AutoCompleteTextViewActivityLandscape.java 30 import android.view.inputmethod.InputMethodManager;
ManyEditTextActivityNoScrollPanScan.java 26 import android.view.inputmethod.InputMethodManager;
ManyEditTextActivityScrollPanScan.java 26 import android.view.inputmethod.InputMethodManager;
OneEditTextActivityNotSelected.java 27 import android.view.inputmethod.InputMethodManager;
OneEditTextActivitySelected.java 26 import android.view.inputmethod.InputMethodManager;
  /packages/apps/Browser/src/com/android/browser/
WebDialog.java 22 import android.view.inputmethod.InputMethodManager;
60 InputMethodManager imm = (InputMethodManager)
FindDialog.java 30 import android.view.inputmethod.InputMethodManager;
172 InputMethodManager imm = (InputMethodManager)
  /cts/tests/tests/view/src/android/view/inputmethod/cts/
InputMethodManagerTest.java 37 import android.view.inputmethod.InputMethodManager;
42 @TestTargetClass(InputMethodManager.class)
156 InputMethodManager imManager = (InputMethodManager) context
170 assertTrue(imManager.showSoftInput(view, InputMethodManager.SHOW_IMPLICIT));
179 imManager.showSoftInputFromInputMethod(token, InputMethodManager.SHOW_FORCED);
180 imManager.hideSoftInputFromInputMethod(token, InputMethodManager.HIDE_NOT_ALWAYS);
183 imManager.toggleSoftInputFromWindow(token, 0, InputMethodManager.HIDE_NOT_ALWAYS);
184 imManager.toggleSoftInputFromWindow(token, 0, InputMethodManager.HIDE_NOT_ALWAYS);
BaseInputConnectionTest.java 42 import android.view.inputmethod.InputMethodManager;
349 * Updates InputMethodManager with the current fullscreen mode.
357 InputMethodManager imManager = (InputMethodManager) mInstrumentation.getTargetContext()
  /frameworks/base/tests/ImfTest/tests/src/com/android/imftest/samples/
ImfBaseTestCase.java 29 import android.view.inputmethod.InputMethodManager;
48 protected InputMethodManager mImm;
69 mImm = InputMethodManager.getInstance(mTargetActivity);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
LatinIMEUtil.java 19 import android.view.inputmethod.InputMethodManager;
80 return ((InputMethodManager) context.getSystemService(
  /frameworks/base/core/java/android/webkit/
WebTextView.java 47 import android.view.inputmethod.InputMethodManager;
173 InputMethodManager.getInstance(mContext)
362 InputMethodManager.getInstance(mContext)
394 InputMethodManager imm = InputMethodManager.peekInstance();
601 InputMethodManager.getInstance(mContext).hideSoftInputFromWindow(
    [all...]
  /frameworks/base/core/java/android/app/
NativeActivity.java 26 import android.view.inputmethod.InputMethodManager;
68 private InputMethodManager mIMM;
149 mIMM = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
SearchDialog.java 59 import android.view.inputmethod.InputMethodManager;
    [all...]
  /frameworks/base/core/java/android/view/
WindowManagerImpl.java 25 import android.view.inputmethod.InputMethodManager;
239 InputMethodManager imm = InputMethodManager.getInstance(view.getContext());
ViewRoot.java 42 import android.view.inputmethod.InputMethodManager;
229 InputMethodManager imm = InputMethodManager.getInstance(mainLooper);
    [all...]
  /packages/apps/Settings/src/com/android/settings/
LanguageSettings.java 38 import android.view.inputmethod.InputMethodManager;
95 InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
  /frameworks/base/core/java/android/inputmethodservice/
InputMethodService.java 54 import android.view.inputmethod.InputMethodManager;
219 InputMethodManager mImm;
374 ? InputMethodManager.RESULT_HIDDEN
375 : (wasVis ? InputMethodManager.RESULT_UNCHANGED_SHOWN
376 : InputMethodManager.RESULT_UNCHANGED_HIDDEN), null);
392 ? InputMethodManager.RESULT_SHOWN
393 : (wasVis ? InputMethodManager.RESULT_UNCHANGED_SHOWN
394 : InputMethodManager.RESULT_UNCHANGED_HIDDEN), null);
554 mImm = (InputMethodManager)getSystemService(INPUT_METHOD_SERVICE);
    [all...]
  /frameworks/base/core/java/android/view/inputmethod/
InputMethodManager.java 190 public final class InputMethodManager {
192 static final String TAG = "InputMethodManager";
195 static InputMethodManager mInstance;
431 InputMethodManager(IInputMethodManager service, Looper looper) {
444 * Retrieve the global InputMethodManager instance, creating it if it
448 static public InputMethodManager getInstance(Context context) {
457 static public InputMethodManager getInstance(Looper mainLooper) {
464 mInstance = new InputMethodManager(service, mainLooper);
470 * Private optimization: retrieve the global InputMethodManager instance,
474 static public InputMethodManager peekInstance()
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
DragController.java 32 import android.view.inputmethod.InputMethodManager;
125 private InputMethodManager mInputMethodManager;
218 mInputMethodManager = (InputMethodManager)
  /frameworks/base/services/java/com/android/server/
InputMethodManagerService.java 74 import android.view.inputmethod.InputMethodManager;
645 flags |= InputMethodManager.SHOW_FORCED;
647 flags |= InputMethodManager.SHOW_IMPLICIT;
    [all...]

Completed in 375 milliseconds

1 2