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.java334 } else if ((ei.imeOptions&EditorInfo.IME_MASK_ACTION)
336 ic.performEditorAction(ei.imeOptions&EditorInfo.IME_MASK_ACTION);
938 && (mInputEditorInfo.imeOptions & EditorInfo.IME_FLAG_NO_FULLSCREEN) != 0) {
1936 (!fromEnterKey || (ei.imeOptions &
1938 (ei.imeOptions & EditorInfo.IME_MASK_ACTION) !=
1945 ic.performEditorAction(ei.imeOptions&EditorInfo.IME_MASK_ACTION);
2092 * {@link EditorInfo#imeOptions EditorInfo.imeOptions}. Returns null
2097 * @param imeOptions The value from @link EditorInfo#imeOptions EditorInf
2101 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);
356 // TODO: use imeOptions to disable voice input when the new API will be available
375 * @param imeOptions the options to set on the query text field
379 public void setImeOptions(int imeOptions) { argument
380 mQueryTextView.setImeOptions(imeOptions);
H A DEditor.java3771 int imeOptions = EditorInfo.IME_NULL; field in class:Editor.InputContentType
H A DTextView.java814 mEditor.mInputContentType.imeOptions = a.getInt(attr,
815 mEditor.mInputContentType.imeOptions);
3868 * will be reported to an IME with {@link EditorInfo#imeOptions} when it
3874 public void setImeOptions(int imeOptions) { argument
3877 mEditor.mInputContentType.imeOptions = imeOptions;
3888 ? mEditor.mInputContentType.imeOptions : EditorInfo.IME_NULL;
5409 outAttrs.imeOptions = mEditor.mInputContentType.imeOptions;
5415 outAttrs.imeOptions
[all...]

Completed in 228 milliseconds