Searched defs:imeOptions (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/core/java/android/view/inputmethod/
H A DEditorInfo.java44 * Set of bits in {@link #imeOptions} that provide alternative actions
105 * Flag of {@link #imeOptions}: used to request that the IME never go
112 * Flag of {@link #imeOptions}: like {@link #IME_FLAG_NAVIGATE_NEXT}, but
122 * Flag of {@link #imeOptions}: used to specify that there is something
136 * Flag of {@link #imeOptions}: used to specify that the IME does not need
149 * Flag of {@link #imeOptions}: used in conjunction with
160 * Flag of {@link #imeOptions}: used in conjunction with
171 * Flag of {@link #imeOptions}: used to request that the IME is capable of
187 * Generic unspecified type for {@link #imeOptions}.
195 public int imeOptions field in class:EditorInfo
[all...]
/frameworks/base/core/java/android/inputmethodservice/
H A DInputMethodService.java336 } else if ((ei.imeOptions&EditorInfo.IME_MASK_ACTION)
338 ic.performEditorAction(ei.imeOptions&EditorInfo.IME_MASK_ACTION);
963 && (mInputEditorInfo.imeOptions & EditorInfo.IME_FLAG_NO_FULLSCREEN) != 0) {
1979 (!fromEnterKey || (ei.imeOptions &
1981 (ei.imeOptions & EditorInfo.IME_MASK_ACTION) !=
1988 ic.performEditorAction(ei.imeOptions&EditorInfo.IME_MASK_ACTION);
2135 * {@link EditorInfo#imeOptions EditorInfo.imeOptions}. Returns null
2140 * @param imeOptions The value from @link EditorInfo#imeOptions EditorInf
2144 getTextForImeAction(int imeOptions) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DSearchView.java294 int imeOptions = a.getInt(R.styleable.SearchView_imeOptions, -1);
295 if (imeOptions != -1) {
296 setImeOptions(imeOptions);
355 // TODO: use imeOptions to disable voice input when the new API will be available
374 * @param imeOptions the options to set on the query text field
378 public void setImeOptions(int imeOptions) { argument
379 mQueryTextView.setImeOptions(imeOptions);
H A DEditor.java3774 int imeOptions = EditorInfo.IME_NULL; field in class:Editor.InputContentType
H A DTextView.java821 mEditor.mInputContentType.imeOptions = a.getInt(attr,
822 mEditor.mInputContentType.imeOptions);
3888 * will be reported to an IME with {@link EditorInfo#imeOptions} when it
3894 public void setImeOptions(int imeOptions) { argument
3897 mEditor.mInputContentType.imeOptions = imeOptions;
3908 ? mEditor.mInputContentType.imeOptions : EditorInfo.IME_NULL;
5415 outAttrs.imeOptions = mEditor.mInputContentType.imeOptions;
5421 outAttrs.imeOptions
[all...]

Completed in 2727 milliseconds