EditorInfoCompat
class EditorInfoCompat
Helper for accessing features in EditorInfo in a backwards compatible fashion.
Summary
Constants |
|
|---|---|
const Int |
IME_FLAG_FORCE_ASCII = -2147483648Flag of |
const Int |
IME_FLAG_NO_PERSONALIZED_LEARNING = 16777216Flag of |
Public constructors |
|---|
|
This function is deprecated. This type should not be instantiated as it contains only static methods. |
Public functions |
|
|---|---|
java-static Array<String!> |
getContentMimeTypes(editorInfo: EditorInfo)Gets MIME types that can be accepted by the target editor if the IME calls |
java-static CharSequence? |
getInitialSelectedText(editorInfo: EditorInfo, flags: Int)Gets the selected text, if any. |
java-static CharSequence? |
getInitialTextAfterCursor(editorInfo: EditorInfo, length: Int, flags: Int)Get n characters of text after the current cursor position. |
java-static CharSequence? |
getInitialTextBeforeCursor(editorInfo: EditorInfo, length: Int, flags: Int)Get n characters of text before the current cursor position. |
java-static Boolean |
isStylusHandwritingEnabled(editorInfo: EditorInfo)Returns |
java-static Unit |
setContentMimeTypes(Sets MIME types that can be accepted by the target editor if the IME calls |
java-static Unit |
setInitialSurroundingSubText(Editors may use this method to provide initial input text to IMEs. |
java-static Unit |
setInitialSurroundingText(Editors may use this method to provide initial input text to IMEs. |
java-static Unit |
setStylusHandwritingEnabled(editorInfo: EditorInfo, enabled: Boolean)Set |
Constants
IME_FLAG_FORCE_ASCII
const val IME_FLAG_FORCE_ASCII = -2147483648: Int
Flag of imeOptions: used to request an IME that is capable of inputting ASCII characters.
The intention of this flag is to ensure that the user can type Roman alphabet characters in a android.widget.TextView. It is typically used for an account ID or password input.
In many cases, IMEs are already able to input ASCII even without being told so (such IMEs already respect this flag in a sense), but there are cases when this is not the default. For instance, users of languages using a different script like Arabic, Greek, Hebrew or Russian typically have a keyboard that can't input ASCII characters by default.
Applications need to be aware that the flag is not a guarantee, and some IMEs may not respect it. However, it is strongly recommended for IME authors to respect this flag especially when their IME could end up with a state where only languages using non-ASCII are enabled.
IME_FLAG_NO_PERSONALIZED_LEARNING
const val IME_FLAG_NO_PERSONALIZED_LEARNING = 16777216: Int
Flag of imeOptions: used to request that the IME does not update any personalized data such as typing history and personalized language model based on what the user typed on this text editing object. Typical use cases are:
- When the application is in a special mode, where user's activities are expected to be not recorded in the application's history. Some web browsers and chat applications may have this kind of modes.
- When storing typing history does not make much sense. Specifying this flag in typing games may help to avoid typing history from being filled up with words that the user is less likely to type in their daily life. Another example is that when the application already knows that the expected input is not a valid word (e.g. a promotion code that is not a valid word in any natural language).
Applications need to be aware that the flag is not a guarantee, and some IMEs may not respect it.
Public constructors
Public functions
getContentMimeTypes
java-static fun getContentMimeTypes(editorInfo: EditorInfo): Array<String!>
Gets MIME types that can be accepted by the target editor if the IME calls commitContent
| Parameters | |
|---|---|
editorInfo: EditorInfo |
the editor from which we get the MIME types |
| Returns | |
|---|---|
Array<String!> |
an array of MIME types. An empty array means that |
getInitialSelectedText
java-static fun getInitialSelectedText(editorInfo: EditorInfo, flags: Int): CharSequence?
Gets the selected text, if any. May be null when no text is selected or the selected text is way too long.
| Parameters | |
|---|---|
editorInfo: EditorInfo |
the editor with which to get the text. |
flags: Int |
Supplies additional options controlling how the text is returned. May be either 0 or |
| Returns | |
|---|---|
CharSequence? |
the text that is currently selected, if any. It could be an empty string when there is no text selected. When |
getInitialTextAfterCursor
java-static fun getInitialTextAfterCursor(editorInfo: EditorInfo, length: Int, flags: Int): CharSequence?
Get n characters of text after the current cursor position. May be null when the protocol is not supported.
| Parameters | |
|---|---|
editorInfo: EditorInfo |
the editor with which to get the text. |
length: Int |
The expected length of the text. |
flags: Int |
Supplies additional options controlling how the text is returned. May be either 0 or |
| Returns | |
|---|---|
CharSequence? |
the text after the cursor position; the length of the returned text might be less than n. When there is no text after the cursor, an empty string will be returned. It could also be |
getInitialTextBeforeCursor
java-static fun getInitialTextBeforeCursor(editorInfo: EditorInfo, length: Int, flags: Int): CharSequence?
Get n characters of text before the current cursor position. May be null when the protocol is not supported.
| Parameters | |
|---|---|
editorInfo: EditorInfo |
the editor with which to get the text. |
length: Int |
The expected length of the text. |
flags: Int |
Supplies additional options controlling how the text is returned. May be either 0 or |
| Returns | |
|---|---|
CharSequence? |
the text before the cursor position; the length of the returned text might be less than n. When there is no text before the cursor, an empty string will be returned. It could also be |
isStylusHandwritingEnabled
java-static fun isStylusHandwritingEnabled(editorInfo: EditorInfo): Boolean
Returns true when an editor has stylus handwriting enabled. false by default.
| Parameters | |
|---|---|
editorInfo: EditorInfo |
the editor from which we get stylus handwriting enabled. |
setContentMimeTypes
java-static fun setContentMimeTypes(
editorInfo: EditorInfo,
contentMimeTypes: Array<String!>?
): Unit
Sets MIME types that can be accepted by the target editor if the IME calls commitContent.
| Parameters | |
|---|---|
editorInfo: EditorInfo |
the editor with which we associate supported MIME types |
contentMimeTypes: Array<String!>? |
an array of MIME types. |
setInitialSurroundingSubText
java-static fun setInitialSurroundingSubText(
editorInfo: EditorInfo,
subText: CharSequence,
subTextStart: Int
): Unit
Editors may use this method to provide initial input text to IMEs. As the surrounding text could be used to provide various input assistance, we recommend editors to provide the complete initial input text in its onCreateInputConnection callback. When trimming the input text is needed, call this method instead of setInitialSurroundingText(CharSequence) and provide the trimmed position info. Always try to include the selected text within subText to give the system best flexibility to choose where and how to trim subText when necessary.
| Parameters | |
|---|---|
editorInfo: EditorInfo |
the editor with which to set the text. |
subText: CharSequence |
The input text. When it was trimmed, |
subTextStart: Int |
The position that the input text got trimmed. For example, when the editor wants to trim out the first 10 chars, subTextStart should be 10. |
setInitialSurroundingText
java-static fun setInitialSurroundingText(
editorInfo: EditorInfo,
sourceText: CharSequence
): Unit
Editors may use this method to provide initial input text to IMEs. As the surrounding text could be used to provide various input assistance, we recommend editors to provide the complete initial input text in its onCreateInputConnection callback. The supplied text will then be processed to serve #getInitialTextBeforeCursor, #getInitialSelectedText, and #getInitialTextBeforeCursor. System is allowed to trim sourceText for various reasons while keeping the most valuable data to IMEs.
Editor authors: Providing the initial input text helps reducing IPC calls for IMEs to provide many modern features right after the connection setup. We recommend calling this method in your implementation.
| Parameters | |
|---|---|
editorInfo: EditorInfo |
the editor with which to set the text. |
sourceText: CharSequence |
The complete input text. |
setStylusHandwritingEnabled
java-static fun setStylusHandwritingEnabled(editorInfo: EditorInfo, enabled: Boolean): Unit
Set true if the editor has stylus handwriting enabled. false by default, editor must set it true to indicate that it supports stylus handwriting.
| Parameters | |
|---|---|
editorInfo: EditorInfo |
the editor with which we set handwriting enabled. |
enabled: Boolean |
|
| See also | |
|---|---|
setAutoHandwritingEnabled |