Searched refs:InputMethod (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/core/java/android/inputmethodservice/
H A DAbstractInputMethodService.java24 import android.view.inputmethod.InputMethod;
34 * complete base class. Be sure to read {@link InputMethod} for more
38 * to the system with the InputMethod interface that input methods must
39 * implement. This base class takes care of reporting your InputMethod from
41 * of the InputMethod interface itself. Derived classes must implement that
46 private InputMethod mInputMethod;
52 * Base class for derived classes to implement their {@link InputMethod}
56 public abstract class AbstractInputMethodImpl implements InputMethod {
179 * Called by the framework during initialization, when the InputMethod
H A DIInputMethodWrapper.java39 import android.view.inputmethod.InputMethod;
51 * on to it back to calls on the public InputMethod interface, scheduling
73 final WeakReference<InputMethod> mInputMethod;
81 static final class InputMethodSessionCallbackWrapper implements InputMethod.SessionCallback {
112 InputMethod inputMethod) {
116 mInputMethod = new WeakReference<InputMethod>(inputMethod);
120 public InputMethod getInternalInputMethod() {
126 InputMethod inputMethod = mInputMethod.get();
H A DInputMethodService.java59 import android.view.inputmethod.InputMethod;
70 * InputMethodService provides a standard implementation of an InputMethod,
72 * base class {@link AbstractInputMethodService} and the {@link InputMethod}
1358 * {@link InputMethod#showSoftInput InputMethod.showSoftInput()}
1365 * as per {@link InputMethod#showSoftInput InputMethod.showSoftInput()}.
1374 if ((flags&InputMethod.SHOW_EXPLICIT) == 0) {
1391 if ((flags&InputMethod.SHOW_FORCED) != 0) {
/frameworks/base/core/java/android/view/inputmethod/
H A DInputMethod.java26 * The InputMethod interface represents an input method which can generate key
47 * <p>The InputMethod interface is actually split into two parts: the interface
51 * {@link #createSession(android.view.inputmethod.InputMethod.SessionCallback)}
55 public interface InputMethod { interface
65 public static final String SERVICE_INTERFACE = "android.view.InputMethod";
68 * Name under which an InputMethod service component publishes information
71 * <code>&lt;{@link android.R.styleable#InputMethod input-method}&gt;</code>
170 * {@link #createSession(android.view.inputmethod.InputMethod.SessionCallback)}.
H A DInputMethodInfo.java124 parser = si.loadXmlMetaData(pm, InputMethod.SERVICE_META_DATA);
127 + InputMethod.SERVICE_META_DATA + " meta-data");
146 com.android.internal.R.styleable.InputMethod);
/frameworks/base/services/java/com/android/server/
H A DInputMethodManagerService.java98 import android.view.inputmethod.InputMethod;
1044 flags |= InputMethod.SHOW_FORCED
1045 | InputMethod.SHOW_EXPLICIT;
1047 flags |= InputMethod.SHOW_EXPLICIT;
1201 mCurIntent = new Intent(InputMethod.SERVICE_INTERFACE);
2487 new Intent(InputMethod.SERVICE_INTERFACE),
2908 // Update the history of InputMethod and Subtype
2937 // Set InputMethod here
3509 p.println(" InputMethod #" + i + ":");

Completed in 122 milliseconds