HomeSort by relevance Sort by last modified time
    Searched full:inputmethodmanager (Results 1 - 25 of 255) sorted by null

1 2 3 4 5 6 7 8 91011

  /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...]
  /frameworks/base/tools/layoutlib/bridge/src/android/view/inputmethod/
InputMethodManager_Delegate.java 27 * Delegate used to provide new implementation of a select few methods of {@link InputMethodManager}
29 * Through the layoutlib_create tool, the original methods of InputMethodManager have been replaced
38 /*package*/ static InputMethodManager getInstance() {
39 synchronized (InputMethodManager.class) {
40 InputMethodManager imm = InputMethodManager.peekInstance();
42 imm = new InputMethodManager(
44 InputMethodManager.sInstance = imm;
InputMethodManager_Accessor.java 25 InputMethodManager.sInstance = null;
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/compat/
InputMethodManagerCompatWrapper.java 21 import android.view.inputmethod.InputMethodManager;
26 // Note that InputMethodManager.switchToNextInputMethod() has been introduced
29 InputMethodManager.class, "switchToNextInputMethod", IBinder.class, boolean.class);
31 // Note that InputMethodManager.shouldOfferSwitchingToNextInputMethod() has been introduced
34 CompatUtils.getMethod(InputMethodManager.class,
37 public final InputMethodManager mImm;
40 mImm = (InputMethodManager)context.getSystemService(Context.INPUT_METHOD_SERVICE);
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
InputMethodManagerTest.java 8 import android.view.inputmethod.InputMethodManager;
19 private InputMethodManager manager;
24 manager = (InputMethodManager) Robolectric.application.getSystemService(Activity.INPUT_METHOD_SERVICE);
  /packages/apps/PhoneCommon/src/com/android/phone/common/dialpad/
DigitsEditText.java 27 import android.view.inputmethod.InputMethodManager;
47 final InputMethodManager imm = ((InputMethodManager) getContext()
58 final InputMethodManager imm = ((InputMethodManager) getContext()
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
UncachedInputMethodManagerUtils.java 22 import android.view.inputmethod.InputMethodManager;
25 * A utility class for {@link InputMethodManager}. Unlike {@link RichInputMethodManager}, this
26 * class provides synchronous, non-cached access to {@link InputMethodManager}. The setup activity
36 * @param imm the {@link InputMethodManager}.
40 final InputMethodManager imm) {
55 * @param imm the {@link InputMethodManager}.
59 final InputMethodManager imm) {
71 * @param imm the {@link InputMethodManager}.
76 final InputMethodManager imm) {
  /cts/tests/tests/view/src/android/view/inputmethod/cts/
InputMethodManagerTest.java 32 import android.view.inputmethod.InputMethodManager;
88 final InputMethodManager imManager = (InputMethodManager) context
113 assertTrue(imManager.showSoftInput(view, InputMethodManager.SHOW_IMPLICIT));
122 imManager.showSoftInputFromInputMethod(token, InputMethodManager.SHOW_FORCED);
123 imManager.hideSoftInputFromInputMethod(token, InputMethodManager.HIDE_NOT_ALWAYS);
126 imManager.toggleSoftInputFromWindow(token, 0, InputMethodManager.HIDE_NOT_ALWAYS);
127 imManager.toggleSoftInputFromWindow(token, 0, InputMethodManager.HIDE_NOT_ALWAYS);
  /external/droiddriver/src/io/appium/droiddriver/actions/view/
CloseKeyboardAction.java 25 import android.view.inputmethod.InputMethodManager;
58 InputMethodManager imm = (InputMethodManager) InstrumentationUtils.getTargetContext()
72 Logs.log(Log.INFO, "InputMethodManager.hideSoftInputFromWindow returned false");
80 " waiting for resultCode from InputMethodManager.hideSoftInputFromWindow");
87 if (resultCode != InputMethodManager.RESULT_UNCHANGED_HIDDEN
88 && resultCode != InputMethodManager.RESULT_HIDDEN) {
89 throw new ActionException("resultCode from InputMethodManager.hideSoftInputFromWindow="
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowInputMethodManager.java 6 import android.view.inputmethod.InputMethodManager;
11 @Implements(InputMethodManager.class)
  /frameworks/base/packages/DocumentsUI/tests/src/com/android/documentsui/bots/
KeyboardBot.java 21 import android.view.inputmethod.InputMethodManager;
40 InputMethodManager inputManager = (InputMethodManager) mContext
  /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();
  /frameworks/base/core/java/android/view/inputmethod/
InputMethod.java 30 * {@link InputMethodManager} for more general information about the
202 * {@link InputMethodManager#RESULT_UNCHANGED_SHOWN InputMethodManager.RESULT_UNCHANGED_SHOWN},
203 * {@link InputMethodManager#RESULT_UNCHANGED_HIDDEN InputMethodManager.RESULT_UNCHANGED_HIDDEN},
204 * {@link InputMethodManager#RESULT_SHOWN InputMethodManager.RESULT_SHOWN}, or
205 * {@link InputMethodManager#RESULT_HIDDEN InputMethodManager.RESULT_HIDDEN}.
216 * {@link InputMethodManager#RESULT_UNCHANGED_SHOWN InputMethodManager.RESULT_UNCHANGED_SHOWN}
    [all...]
package.html 4 as soft keyboards). See {@link android.view.inputmethod.InputMethodManager} for
  /frameworks/base/tests/ImfTest/src/com/android/imftest/samples/
ButtonActivity.java 24 import android.view.inputmethod.InputMethodManager;
50 InputMethodManager imm = InputMethodManager.getInstance();
  /development/samples/ApiDemos/src/com/example/android/apis/inputmethod/
ShowInputMethodAndSubtypeEnabler.java 27 import android.view.inputmethod.InputMethodManager;
38 * {@link InputMethodManager#showInputMethodAndSubtypeEnabler(String)}, which is highly likely to be
91 final InputMethodManager imm =
92 (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
  /packages/apps/Settings/src/com/android/settings/inputmethod/
InputMethodDialogReceiver.java 22 import android.view.inputmethod.InputMethodManager;
28 ((InputMethodManager) context.getSystemService(Context.INPUT_METHOD_SERVICE))
  /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()
  /platform_testing/tests/functional/notificationtests/src/com/android/notification/functional/
NotificationInlineReplyTests.java 28 import android.view.inputmethod.InputMethodManager;
77 InputMethodManager imm = (InputMethodManager) mContext
97 InputMethodManager imm = (InputMethodManager) mContext
  /frameworks/base/docs/html/sdk/api_diff/21/changes/
android.view.inputmethod.InputMethodManager.html 10 android.view.inputmethod.InputMethodManager
74 Class android.view.inputmethod.<A HREF="../../../../reference/android/view/inputmethod/InputMethodManager.html" target="_top"><font size="+2"><code>InputMethodManager</code></font></A>
86 <A NAME="android.view.inputmethod.InputMethodManager.updateCursorAnchorInfo_added(android.view.View, android.view.inputmethod.CursorAnchorInfo)"></A>
87 <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/view/inputmethod/InputMethodManager.html#updateCursorAnchorInfo(android.view.View, android.view.inputmethod.CursorAnchorInfo)" target="_top"><code>updateCursorAnchorInfo</code></A>(<code>View,</nobr> CursorAnchorInfo<nobr><nobr></code>)</nobr>
101 <A NAME="android.view.inputmethod.InputMethodManager.isWatchingCursor_changed(android.view.View)"></A>
102 <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/view/inputmethod/InputMethodManager.html#isWatchingCursor(android.view.View)" target="_top"><code>isWatchingCursor</code></A>(<code>View</code>) </nobr>
111 <A NAME="android.view.inputmethod.InputMethodManager.updateCursor_changed(android.view.View, int, int, int, int)"></A>
112 <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/view/inputmethod/InputMethodManager.html#updateCursor(android.view.View, int, int, int, int)" target="_top"><code>updateCursor</code></A>(<code>View,</nobr> int<nobr>,</nobr> int<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>) </nobr>
  /developers/build/prebuilts/gradle/AsymmetricFingerprintDialog/Application/src/main/java/com/example/android/asymmetricfingerprintdialog/
FingerprintModule.java 28 import android.view.inputmethod.InputMethodManager;
98 public InputMethodManager providesInputMethodManager(Context context) {
99 return (InputMethodManager) context.getSystemService(Context.INPUT_METHOD_SERVICE);
  /developers/samples/android/security/AsymmetricFingerprintDialog/Application/src/main/java/com/example/android/asymmetricfingerprintdialog/
FingerprintModule.java 28 import android.view.inputmethod.InputMethodManager;
98 public InputMethodManager providesInputMethodManager(Context context) {
99 return (InputMethodManager) context.getSystemService(Context.INPUT_METHOD_SERVICE);
  /development/samples/browseable/AsymmetricFingerprintDialog/src/com.example.android.asymmetricfingerprintdialog/
FingerprintModule.java 28 import android.view.inputmethod.InputMethodManager;
98 public InputMethodManager providesInputMethodManager(Context context) {
99 return (InputMethodManager) context.getSystemService(Context.INPUT_METHOD_SERVICE);
  /platform_testing/tests/functional/testapks/permissiontestappmv1/src/com/android/permissontestappmv1/
MainActivity.java 23 import android.view.inputmethod.InputMethodManager;
30 import android.view.inputmethod.InputMethodManager;

Completed in 410 milliseconds

1 2 3 4 5 6 7 8 91011