/* * Copyright (C) 2008 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package android.view.inputmethod; import static android.Manifest.permission.INTERACT_ACROSS_USERS_FULL; import static android.view.inputmethod.EditorInfoProto.FIELD_ID; import static android.view.inputmethod.EditorInfoProto.IME_OPTIONS; import static android.view.inputmethod.EditorInfoProto.INPUT_TYPE; import static android.view.inputmethod.EditorInfoProto.PACKAGE_NAME; import static android.view.inputmethod.EditorInfoProto.PRIVATE_IME_OPTIONS; import static android.view.inputmethod.EditorInfoProto.TARGET_INPUT_METHOD_USER_ID; import static android.view.inputmethod.Flags.FLAG_EDITORINFO_HANDWRITING_ENABLED; import android.annotation.FlaggedApi; import android.annotation.IntDef; import android.annotation.IntRange; import android.annotation.NonNull; import android.annotation.Nullable; import android.annotation.RequiresPermission; import android.content.res.Configuration; import android.inputmethodservice.InputMethodService; import android.os.Build.VERSION_CODES; import android.os.Bundle; import android.os.LocaleList; import android.os.Parcel; import android.os.Parcelable; import android.os.UserHandle; import android.text.InputType; import android.text.TextUtils; import android.util.Printer; import android.util.proto.ProtoOutputStream; import android.view.MotionEvent; import android.view.MotionEvent.ToolType; import android.view.View; import android.view.autofill.AutofillId; import com.android.internal.annotations.VisibleForTesting; import com.android.internal.inputmethod.InputMethodDebug; import com.android.internal.util.ArrayUtils; import com.android.internal.util.Preconditions; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.util.ArrayList; import java.util.Arrays; import java.util.HashSet; import java.util.List; import java.util.Objects; import java.util.Set; /** * An EditorInfo describes several attributes of a text editing object * that an input method is communicating with (typically an EditText), most * importantly the type of text content it contains and the current cursor position. */ public class EditorInfo implements InputType, Parcelable { /** * Masks for {@link inputType} * *
     * |-------|-------|-------|-------|
     *                              1111 TYPE_MASK_CLASS
     *                      11111111     TYPE_MASK_VARIATION
     *          111111111111             TYPE_MASK_FLAGS
     * |-------|-------|-------|-------|
     *                                   TYPE_NULL
     * |-------|-------|-------|-------|
     *                                 1 TYPE_CLASS_TEXT
     *                             1     TYPE_TEXT_VARIATION_URI
     *                            1      TYPE_TEXT_VARIATION_EMAIL_ADDRESS
     *                            11     TYPE_TEXT_VARIATION_EMAIL_SUBJECT
     *                           1       TYPE_TEXT_VARIATION_SHORT_MESSAGE
     *                           1 1     TYPE_TEXT_VARIATION_LONG_MESSAGE
     *                           11      TYPE_TEXT_VARIATION_PERSON_NAME
     *                           111     TYPE_TEXT_VARIATION_POSTAL_ADDRESS
     *                          1        TYPE_TEXT_VARIATION_PASSWORD
     *                          1  1     TYPE_TEXT_VARIATION_VISIBLE_PASSWORD
     *                          1 1      TYPE_TEXT_VARIATION_WEB_EDIT_TEXT
     *                          1 11     TYPE_TEXT_VARIATION_FILTER
     *                          11       TYPE_TEXT_VARIATION_PHONETIC
     *                          11 1     TYPE_TEXT_VARIATION_WEB_EMAIL_ADDRESS
     *                          111      TYPE_TEXT_VARIATION_WEB_PASSWORD
     *                     1             TYPE_TEXT_FLAG_CAP_CHARACTERS
     *                    1              TYPE_TEXT_FLAG_CAP_WORDS
     *                   1               TYPE_TEXT_FLAG_CAP_SENTENCES
     *                  1                TYPE_TEXT_FLAG_AUTO_CORRECT
     *                 1                 TYPE_TEXT_FLAG_AUTO_COMPLETE
     *                1                  TYPE_TEXT_FLAG_MULTI_LINE
     *               1                   TYPE_TEXT_FLAG_IME_MULTI_LINE
     *              1                    TYPE_TEXT_FLAG_NO_SUGGESTIONS
     *             1                     TYPE_TEXT_FLAG_ENABLE_TEXT_CONVERSION_SUGGESTIONS
     * |-------|-------|-------|-------|
     *                                1  TYPE_CLASS_NUMBER
     *                             1     TYPE_NUMBER_VARIATION_PASSWORD
     *                     1             TYPE_NUMBER_FLAG_SIGNED
     *                    1              TYPE_NUMBER_FLAG_DECIMAL
     * |-------|-------|-------|-------|
     *                                11 TYPE_CLASS_PHONE
     * |-------|-------|-------|-------|
     *                               1   TYPE_CLASS_DATETIME
     *                             1     TYPE_DATETIME_VARIATION_DATE
     *                            1      TYPE_DATETIME_VARIATION_TIME
     * |-------|-------|-------|-------|
*/ /** * The content type of the text box, whose bits are defined by * {@link InputType}. * * @see InputType * @see #TYPE_MASK_CLASS * @see #TYPE_MASK_VARIATION * @see #TYPE_MASK_FLAGS */ public int inputType = TYPE_NULL; /** * Set of bits in {@link #imeOptions} that provide alternative actions * associated with the "enter" key. This both helps the IME provide * better feedback about what the enter key will do, and also allows it * to provide alternative mechanisms for providing that command. */ public static final int IME_MASK_ACTION = 0x000000ff; /** * Bits of {@link #IME_MASK_ACTION}: no specific action has been * associated with this editor, let the editor come up with its own if * it can. */ public static final int IME_ACTION_UNSPECIFIED = 0x00000000; /** * Bits of {@link #IME_MASK_ACTION}: there is no available action. */ public static final int IME_ACTION_NONE = 0x00000001; /** * Bits of {@link #IME_MASK_ACTION}: the action key performs a "go" * operation to take the user to the target of the text they typed. * Typically used, for example, when entering a URL. */ public static final int IME_ACTION_GO = 0x00000002; /** * Bits of {@link #IME_MASK_ACTION}: the action key performs a "search" * operation, taking the user to the results of searching for the text * they have typed (in whatever context is appropriate). */ public static final int IME_ACTION_SEARCH = 0x00000003; /** * Bits of {@link #IME_MASK_ACTION}: the action key performs a "send" * operation, delivering the text to its target. This is typically used * when composing a message in IM or SMS where sending is immediate. */ public static final int IME_ACTION_SEND = 0x00000004; /** * Bits of {@link #IME_MASK_ACTION}: the action key performs a "next" * operation, taking the user to the next field that will accept text. */ public static final int IME_ACTION_NEXT = 0x00000005; /** * Bits of {@link #IME_MASK_ACTION}: the action key performs a "done" * operation, typically meaning there is nothing more to input and the * IME will be closed. */ public static final int IME_ACTION_DONE = 0x00000006; /** * Bits of {@link #IME_MASK_ACTION}: like {@link #IME_ACTION_NEXT}, but * for moving to the previous field. This will normally not be used to * specify an action (since it precludes {@link #IME_ACTION_NEXT}), but * can be returned to the app if it sets {@link #IME_FLAG_NAVIGATE_PREVIOUS}. */ public static final int IME_ACTION_PREVIOUS = 0x00000007; /** * Flag of {@link #imeOptions}: used to request that the IME should 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: * * *

Applications need to be aware that the flag is not a guarantee, and some IMEs may not * respect it.

*/ public static final int IME_FLAG_NO_PERSONALIZED_LEARNING = 0x1000000; /** * Flag of {@link #imeOptions}: used to request that the IME never go * into fullscreen mode. * By default, IMEs may go into full screen mode when they think * it's appropriate, for example on small screens in landscape * orientation where displaying a software keyboard may occlude * such a large portion of the screen that the remaining part is * too small to meaningfully display the application UI. * If this flag is set, compliant IMEs will never go into full screen mode, * and always leave some space to display the application UI. * Applications need to be aware that the flag is not a guarantee, and * some IMEs may ignore it. */ public static final int IME_FLAG_NO_FULLSCREEN = 0x2000000; /** * Flag of {@link #imeOptions}: like {@link #IME_FLAG_NAVIGATE_NEXT}, but * specifies there is something interesting that a backward navigation * can focus on. If the user selects the IME's facility to backward * navigate, this will show up in the application as an {@link #IME_ACTION_PREVIOUS} * at {@link InputConnection#performEditorAction(int) * InputConnection.performEditorAction(int)}. */ public static final int IME_FLAG_NAVIGATE_PREVIOUS = 0x4000000; /** * Flag of {@link #imeOptions}: used to specify that there is something * interesting that a forward navigation can focus on. This is like using * {@link #IME_ACTION_NEXT}, except allows the IME to be multiline (with * an enter key) as well as provide forward navigation. Note that some * IMEs may not be able to do this, especially when running on a small * screen where there is little space. In that case it does not need to * present a UI for this option. Like {@link #IME_ACTION_NEXT}, if the * user selects the IME's facility to forward navigate, this will show up * in the application at {@link InputConnection#performEditorAction(int) * InputConnection.performEditorAction(int)}. */ public static final int IME_FLAG_NAVIGATE_NEXT = 0x8000000; /** * Flag of {@link #imeOptions}: used to specify that the IME does not need * to show its extracted text UI. For input methods that may be fullscreen, * often when in landscape mode, this allows them to be smaller and let part * of the application be shown behind, through transparent UI parts in the * fullscreen IME. The part of the UI visible to the user may not be responsive * to touch because the IME will receive touch events, which may confuse the * user; use {@link #IME_FLAG_NO_FULLSCREEN} instead for a better experience. * Using this flag is discouraged and it may become deprecated in the future. * Its meaning is unclear in some situations and it may not work appropriately * on older versions of the platform. */ public static final int IME_FLAG_NO_EXTRACT_UI = 0x10000000; /** * Flag of {@link #imeOptions}: used in conjunction with one of the actions * masked by {@link #IME_MASK_ACTION}, this indicates that the action * should not be available as an accessory button on the right of the extracted * text when the input method is full-screen. Note that by setting this flag, * there can be cases where the action is simply never available to the * user. Setting this generally means that you think that in fullscreen mode, * where there is little space to show the text, it's not worth taking some * screen real estate to display the action and it should be used instead * to show more text. */ public static final int IME_FLAG_NO_ACCESSORY_ACTION = 0x20000000; /** * Flag of {@link #imeOptions}: used in conjunction with one of the actions * masked by {@link #IME_MASK_ACTION}. If this flag is not set, IMEs will * normally replace the "enter" key with the action supplied. This flag * indicates that the action should not be available in-line as a replacement * for the "enter" key. Typically this is because the action has such a * significant impact or is not recoverable enough that accidentally hitting * it should be avoided, such as sending a message. Note that * {@link android.widget.TextView} will automatically set this flag for you * on multi-line text views. */ public static final int IME_FLAG_NO_ENTER_ACTION = 0x40000000; /** * Flag of {@link #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 {@link android.widget.TextView}. * It is typically used for an account ID or password input. A lot of the time, * 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. */ public static final int IME_FLAG_FORCE_ASCII = 0x80000000; /** * Flag of {@link #internalImeOptions}: flag is set when app window containing this * {@link EditorInfo} is using {@link Configuration#ORIENTATION_PORTRAIT} mode. * @hide */ public static final int IME_INTERNAL_FLAG_APP_WINDOW_PORTRAIT = 0x00000001; /** * Generic unspecified type for {@link #imeOptions}. */ public static final int IME_NULL = 0x00000000; /** * Masks for {@link imeOptions} * *
     * |-------|-------|-------|-------|
     *                              1111 IME_MASK_ACTION
     * |-------|-------|-------|-------|
     *                                   IME_ACTION_UNSPECIFIED
     *                                 1 IME_ACTION_NONE
     *                                1  IME_ACTION_GO
     *                                11 IME_ACTION_SEARCH
     *                               1   IME_ACTION_SEND
     *                               1 1 IME_ACTION_NEXT
     *                               11  IME_ACTION_DONE
     *                               111 IME_ACTION_PREVIOUS
     *         1                         IME_FLAG_NO_PERSONALIZED_LEARNING
     *        1                          IME_FLAG_NO_FULLSCREEN
     *       1                           IME_FLAG_NAVIGATE_PREVIOUS
     *      1                            IME_FLAG_NAVIGATE_NEXT
     *     1                             IME_FLAG_NO_EXTRACT_UI
     *    1                              IME_FLAG_NO_ACCESSORY_ACTION
     *   1                               IME_FLAG_NO_ENTER_ACTION
     *  1                                IME_FLAG_FORCE_ASCII
     * |-------|-------|-------|-------|
*/ /** * Extended type information for the editor, to help the IME better * integrate with it. */ public int imeOptions = IME_NULL; /** * A string supplying additional information options that are * private to a particular IME implementation. The string must be * scoped to a package owned by the implementation, to ensure there are * no conflicts between implementations, but other than that you can put * whatever you want in it to communicate with the IME. For example, * you could have a string that supplies an argument like * "com.example.myapp.SpecialMode=3". This field is can be * filled in from the {@link android.R.attr#privateImeOptions} * attribute of a TextView. */ public String privateImeOptions = null; /** * Masks for {@link internalImeOptions} * *
     *                                 1 IME_INTERNAL_FLAG_APP_WINDOW_PORTRAIT
     * |-------|-------|-------|-------|
*/ /** * Same as {@link android.R.attr#imeOptions} but for framework's internal-use only. * @hide */ public int internalImeOptions = IME_NULL; /** * In some cases an IME may be able to display an arbitrary label for * a command the user can perform, which you can specify here. This is * typically used as the label for the action to use in-line as a replacement * for the "enter" key (see {@link #actionId}). Remember the key where * this will be displayed is typically very small, and there are significant * localization challenges to make this fit in all supported languages. Also * you can not count absolutely on this being used, as some IMEs may * ignore this. */ public CharSequence actionLabel = null; /** * If {@link #actionLabel} has been given, this is the id for that command * when the user presses its button that is delivered back with * {@link InputConnection#performEditorAction(int) * InputConnection.performEditorAction()}. */ public int actionId = 0; /** * The text offset of the start of the selection at the time editing * begins; -1 if not known. Keep in mind that, without knowing the cursor * position, many IMEs will not be able to offer their full feature set and * may even behave in unpredictable ways: pass the actual cursor position * here if possible at all. * *

Also, this needs to be the cursor position right now, * not at some point in the past, even if input is starting in the same text field * as before. When the app is filling this object, input is about to start by * definition, and this value will override any value the app may have passed to * {@link InputMethodManager#updateSelection(android.view.View, int, int, int, int)} * before.

*/ public int initialSelStart = -1; /** *

The text offset of the end of the selection at the time editing * begins; -1 if not known. Keep in mind that, without knowing the cursor * position, many IMEs will not be able to offer their full feature set and * may behave in unpredictable ways: pass the actual cursor position * here if possible at all.

* *

Also, this needs to be the cursor position right now, * not at some point in the past, even if input is starting in the same text field * as before. When the app is filling this object, input is about to start by * definition, and this value will override any value the app may have passed to * {@link InputMethodManager#updateSelection(android.view.View, int, int, int, int)} * before.

*/ public int initialSelEnd = -1; /** * The capitalization mode of the first character being edited in the * text. Values may be any combination of * {@link TextUtils#CAP_MODE_CHARACTERS TextUtils.CAP_MODE_CHARACTERS}, * {@link TextUtils#CAP_MODE_WORDS TextUtils.CAP_MODE_WORDS}, and * {@link TextUtils#CAP_MODE_SENTENCES TextUtils.CAP_MODE_SENTENCES}, though * you should generally just take a non-zero value to mean "start out in * caps mode". */ public int initialCapsMode = 0; /** * The "hint" text of the text view, typically shown in-line when the * text is empty to tell the user what to enter. */ public CharSequence hintText; /** * A label to show to the user describing the text they are writing. */ public CharSequence label; /** * Name of the package that owns this editor. * *

IME authors: In API level 22 * {@link android.os.Build.VERSION_CODES#LOLLIPOP_MR1} and prior, do not trust this package * name. The system had not verified the consistency between the package name here and * application's uid. Consider to use {@link InputBinding#getUid()}, which is trustworthy. * Starting from {@link android.os.Build.VERSION_CODES#M}, the system verifies the consistency * between this package name and application uid before {@link EditorInfo} is passed to the * input method.

* *

Editor authors: Starting from {@link android.os.Build.VERSION_CODES#M}, * the application is no longer * able to establish input connections if the package name provided here is inconsistent with * application's uid.

*/ public String packageName; /** * Autofill Id for the field that's currently on focus. * *

Marked as hide since it's only used by framework.

* @hide */ public AutofillId autofillId; /** * Identifier for the editor's field. This is optional, and may be * 0. By default it is filled in with the result of * {@link android.view.View#getId() View.getId()} on the View that * is being edited. */ public int fieldId; /** * Additional name for the editor's field. This can supply additional * name information for the field. By default it is null. The actual * contents have no meaning. */ public String fieldName; /** * Any extra data to supply to the input method. This is for extended * communication with specific input methods; the name fields in the * bundle should be scoped (such as "com.mydomain.im.SOME_FIELD") so * that they don't conflict with others. This field can be * filled in from the {@link android.R.attr#editorExtras} * attribute of a TextView. */ public Bundle extras; /** * List of the languages that the user is supposed to switch to no matter what input method * subtype is currently used. This special "hint" can be used mainly for, but not limited to, * multilingual users who want IMEs to switch language context automatically. * *

{@code null} means that no special language "hint" is needed.

* *

Editor authors: Specify this only when you are confident that the user * will switch to certain languages in this context no matter what input method subtype is * currently selected. Otherwise, keep this {@code null}. Explicit user actions and/or * preferences would be good signals to specify this special "hint", For example, a chat * application may be able to put the last used language at the top of {@link #hintLocales} * based on whom the user is going to talk, by remembering what language is used in the last * conversation. Do not specify {@link android.widget.TextView#getTextLocales()} only because * it is used for text rendering.

* * @see android.widget.TextView#setImeHintLocales(LocaleList) * @see android.widget.TextView#getImeHintLocales() */ @Nullable public LocaleList hintLocales = null; /** * List of acceptable MIME types for * {@link InputConnection#commitContent(InputContentInfo, int, Bundle)}. * *

{@code null} or an empty array means that * {@link InputConnection#commitContent(InputContentInfo, int, Bundle)} is not supported in this * editor.

*/ @Nullable public String[] contentMimeTypes = null; private @HandwritingGesture.GestureTypeFlags int mSupportedHandwritingGestureTypes; private @HandwritingGesture.GestureTypeFlags int mSupportedHandwritingGesturePreviewTypes; /** * Set the Handwriting gestures supported by the current {@code Editor}. * For an editor that supports Stylus Handwriting * {@link InputMethodManager#startStylusHandwriting}, it is also recommended that it declares * supported gestures. *

If editor doesn't support one of the declared types, IME will not send those Gestures * to the editor. Instead they will fallback to using normal text input.

*

Note: A supported gesture may not have preview supported * {@link #getSupportedHandwritingGesturePreviews()}.

* @param gestures List of supported gesture classes including any of {@link SelectGesture}, * {@link InsertGesture}, {@link DeleteGesture}. * @see #setSupportedHandwritingGesturePreviews(Set) */ public void setSupportedHandwritingGestures( @NonNull List> gestures) { Objects.requireNonNull(gestures); if (gestures.isEmpty()) { mSupportedHandwritingGestureTypes = 0; return; } int supportedTypes = 0; for (Class gesture : gestures) { Objects.requireNonNull(gesture); if (gesture.equals(SelectGesture.class)) { supportedTypes |= HandwritingGesture.GESTURE_TYPE_SELECT; } else if (gesture.equals(SelectRangeGesture.class)) { supportedTypes |= HandwritingGesture.GESTURE_TYPE_SELECT_RANGE; } else if (gesture.equals(InsertGesture.class)) { supportedTypes |= HandwritingGesture.GESTURE_TYPE_INSERT; } else if (gesture.equals(InsertModeGesture.class)) { supportedTypes |= HandwritingGesture.GESTURE_TYPE_INSERT_MODE; } else if (gesture.equals(DeleteGesture.class)) { supportedTypes |= HandwritingGesture.GESTURE_TYPE_DELETE; } else if (gesture.equals(DeleteRangeGesture.class)) { supportedTypes |= HandwritingGesture.GESTURE_TYPE_DELETE_RANGE; } else if (gesture.equals(RemoveSpaceGesture.class)) { supportedTypes |= HandwritingGesture.GESTURE_TYPE_REMOVE_SPACE; } else if (gesture.equals(JoinOrSplitGesture.class)) { supportedTypes |= HandwritingGesture.GESTURE_TYPE_JOIN_OR_SPLIT; } else { throw new IllegalArgumentException("Unknown gesture type: " + gesture); } } mSupportedHandwritingGestureTypes = supportedTypes; } /** * Returns the combination of Stylus handwriting gesture types * supported by the current {@code Editor}. * For an editor that supports Stylus Handwriting. * {@link InputMethodManager#startStylusHandwriting}, it also declares supported gestures. * @return List of supported gesture classes including any of {@link SelectGesture}, * {@link InsertGesture}, {@link DeleteGesture}. * @see #getSupportedHandwritingGesturePreviews() */ @NonNull public List> getSupportedHandwritingGestures() { List> list = new ArrayList<>(); if (mSupportedHandwritingGestureTypes == 0) { return list; } if ((mSupportedHandwritingGestureTypes & HandwritingGesture.GESTURE_TYPE_SELECT) == HandwritingGesture.GESTURE_TYPE_SELECT) { list.add(SelectGesture.class); } if ((mSupportedHandwritingGestureTypes & HandwritingGesture.GESTURE_TYPE_SELECT_RANGE) == HandwritingGesture.GESTURE_TYPE_SELECT_RANGE) { list.add(SelectRangeGesture.class); } if ((mSupportedHandwritingGestureTypes & HandwritingGesture.GESTURE_TYPE_INSERT) == HandwritingGesture.GESTURE_TYPE_INSERT) { list.add(InsertGesture.class); } if ((mSupportedHandwritingGestureTypes & HandwritingGesture.GESTURE_TYPE_INSERT_MODE) == HandwritingGesture.GESTURE_TYPE_INSERT_MODE) { list.add(InsertModeGesture.class); } if ((mSupportedHandwritingGestureTypes & HandwritingGesture.GESTURE_TYPE_DELETE) == HandwritingGesture.GESTURE_TYPE_DELETE) { list.add(DeleteGesture.class); } if ((mSupportedHandwritingGestureTypes & HandwritingGesture.GESTURE_TYPE_DELETE_RANGE) == HandwritingGesture.GESTURE_TYPE_DELETE_RANGE) { list.add(DeleteRangeGesture.class); } if ((mSupportedHandwritingGestureTypes & HandwritingGesture.GESTURE_TYPE_REMOVE_SPACE) == HandwritingGesture.GESTURE_TYPE_REMOVE_SPACE) { list.add(RemoveSpaceGesture.class); } if ((mSupportedHandwritingGestureTypes & HandwritingGesture.GESTURE_TYPE_JOIN_OR_SPLIT) == HandwritingGesture.GESTURE_TYPE_JOIN_OR_SPLIT) { list.add(JoinOrSplitGesture.class); } return list; } /** * Set the Handwriting gesture previews supported by the current {@code Editor}. * For an editor that supports Stylus Handwriting * {@link InputMethodManager#startStylusHandwriting}, it is also recommended that it declares * supported gesture previews. *

Note: A supported gesture {@link EditorInfo#getSupportedHandwritingGestures()} may not * have preview supported {@link EditorInfo#getSupportedHandwritingGesturePreviews()}.

*

If editor doesn't support one of the declared types, gesture preview will be ignored.

* @param gestures Set of supported gesture classes. One of {@link SelectGesture}, * {@link SelectRangeGesture}, {@link DeleteGesture}, {@link DeleteRangeGesture}. * @see #setSupportedHandwritingGestures(List) */ public void setSupportedHandwritingGesturePreviews( @NonNull Set> gestures) { Objects.requireNonNull(gestures); if (gestures.isEmpty()) { mSupportedHandwritingGesturePreviewTypes = 0; return; } int supportedTypes = 0; for (Class gesture : gestures) { Objects.requireNonNull(gesture); if (gesture.equals(SelectGesture.class)) { supportedTypes |= HandwritingGesture.GESTURE_TYPE_SELECT; } else if (gesture.equals(SelectRangeGesture.class)) { supportedTypes |= HandwritingGesture.GESTURE_TYPE_SELECT_RANGE; } else if (gesture.equals(DeleteGesture.class)) { supportedTypes |= HandwritingGesture.GESTURE_TYPE_DELETE; } else if (gesture.equals(DeleteRangeGesture.class)) { supportedTypes |= HandwritingGesture.GESTURE_TYPE_DELETE_RANGE; } else { throw new IllegalArgumentException( "Unsupported gesture type for preview: " + gesture); } } mSupportedHandwritingGesturePreviewTypes = supportedTypes; } /** * Returns the combination of Stylus handwriting gesture preview types * supported by the current {@code Editor}. * For an editor that supports Stylus Handwriting. * {@link InputMethodManager#startStylusHandwriting}, it also declares supported gesture * previews. *

Note: A supported gesture {@link EditorInfo#getSupportedHandwritingGestures()} may not * have preview supported {@link EditorInfo#getSupportedHandwritingGesturePreviews()}.

* @return Set of supported gesture preview classes. One of {@link SelectGesture}, * {@link SelectRangeGesture}, {@link DeleteGesture}, {@link DeleteRangeGesture}. * @see #getSupportedHandwritingGestures() */ @NonNull public Set> getSupportedHandwritingGesturePreviews() { Set> set = new HashSet<>(); if (mSupportedHandwritingGesturePreviewTypes == 0) { return set; } if ((mSupportedHandwritingGesturePreviewTypes & HandwritingGesture.GESTURE_TYPE_SELECT) == HandwritingGesture.GESTURE_TYPE_SELECT) { set.add(SelectGesture.class); } if ((mSupportedHandwritingGesturePreviewTypes & HandwritingGesture.GESTURE_TYPE_SELECT_RANGE) == HandwritingGesture.GESTURE_TYPE_SELECT_RANGE) { set.add(SelectRangeGesture.class); } if ((mSupportedHandwritingGesturePreviewTypes & HandwritingGesture.GESTURE_TYPE_DELETE) == HandwritingGesture.GESTURE_TYPE_DELETE) { set.add(DeleteGesture.class); } if ((mSupportedHandwritingGesturePreviewTypes & HandwritingGesture.GESTURE_TYPE_DELETE_RANGE) == HandwritingGesture.GESTURE_TYPE_DELETE_RANGE) { set.add(DeleteRangeGesture.class); } return set; } private boolean mIsStylusHandwritingEnabled; /** * AndroidX Core library 1.13.0 introduced EditorInfoCompat#setStylusHandwritingEnabled and * EditorInfoCompat#isStylusHandwritingEnabled which used a boolean value in the EditorInfo * extras bundle. These methods do not set or check the Android V property since the Android V * SDK was not yet available. In order for EditorInfoCompat#isStylusHandwritingEnabled to return * the correct value for EditorInfo created by Android V TextView, the extras bundle value * should be set. This is the extras bundle key. * * @hide */ public static final String STYLUS_HANDWRITING_ENABLED_ANDROIDX_EXTRAS_KEY = "androidx.core.view.inputmethod.EditorInfoCompat.STYLUS_HANDWRITING_ENABLED"; /** * Set {@code true} if the {@code Editor} has * {@link InputMethodManager#startStylusHandwriting stylus handwriting} enabled. * {@code false} by default, {@code Editor} must set it {@code true} to indicate that * it supports stylus handwriting. * * @param enabled {@code true} if stylus handwriting is enabled. * @see View#setAutoHandwritingEnabled(boolean) */ @FlaggedApi(FLAG_EDITORINFO_HANDWRITING_ENABLED) public void setStylusHandwritingEnabled(boolean enabled) { mIsStylusHandwritingEnabled = enabled; } /** * Returns {@code true} when an {@code Editor} has stylus handwriting enabled. * {@code false} by default. * @see #setStylusHandwritingEnabled(boolean) * @see InputMethodManager#isStylusHandwritingAvailable() */ @FlaggedApi(FLAG_EDITORINFO_HANDWRITING_ENABLED) public boolean isStylusHandwritingEnabled() { return mIsStylusHandwritingEnabled; } /** * If not {@code null}, this editor needs to talk to IMEs that run for the specified user, no * matter what user ID the calling process has. * *

Note also that pseudo handles such as {@link UserHandle#ALL} are not supported.

* * @hide */ @RequiresPermission(INTERACT_ACROSS_USERS_FULL) @Nullable public UserHandle targetInputMethodUser = null; @IntDef({TrimPolicy.HEAD, TrimPolicy.TAIL}) @Retention(RetentionPolicy.SOURCE) @interface TrimPolicy { int HEAD = 0; int TAIL = 1; } /** * The maximum length of initialSurroundingText. When the input text from * {@code setInitialSurroundingText(CharSequence)} is longer than this, trimming shall be * performed to keep memory efficiency. */ @VisibleForTesting static final int MEMORY_EFFICIENT_TEXT_LENGTH = 2048; /** * When the input text is longer than {@code #MEMORY_EFFICIENT_TEXT_LENGTH}, we start trimming * the input text into three parts: BeforeCursor, Selection, and AfterCursor. We don't want to * trim the Selection but we also don't want it consumes all available space. Therefore, the * maximum acceptable Selection length is half of {@code #MEMORY_EFFICIENT_TEXT_LENGTH}. */ @VisibleForTesting static final int MAX_INITIAL_SELECTION_LENGTH = MEMORY_EFFICIENT_TEXT_LENGTH / 2; @Nullable private SurroundingText mInitialSurroundingText = null; /** * Initial {@link MotionEvent#ACTION_UP} tool type {@link MotionEvent#getToolType(int)} that * was used to focus this editor. */ private @ToolType int mInitialToolType = MotionEvent.TOOL_TYPE_UNKNOWN; /** * 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 {@link View#onCreateInputConnection(EditorInfo)} callback. * The supplied text will then be processed to serve {@code #getInitialTextBeforeCursor}, * {@code #getInitialSelectedText}, and {@code #getInitialTextBeforeCursor}. System is allowed * to trim {@code sourceText} for various reasons while keeping the most valuable data to IMEs. * * Starting from {@link VERSION_CODES#S}, spans that do not implement {@link Parcelable} will * be automatically dropped. * *

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. * * @param sourceText The complete input text. */ public void setInitialSurroundingText(@NonNull CharSequence sourceText) { setInitialSurroundingSubText(sourceText, /* subTextStart = */ 0); } /** * An internal variant of {@link #setInitialSurroundingText(CharSequence)}. * * @param surroundingText {@link SurroundingText} to be set. * @hide */ public final void setInitialSurroundingTextInternal(@NonNull SurroundingText surroundingText) { mInitialSurroundingText = surroundingText; } /** * 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 {@link View#onCreateInputConnection(EditorInfo)} callback. * When trimming the input text is needed, call this method instead of * {@code setInitialSurroundingText(CharSequence)} and provide the trimmed position info. Always * try to include the selected text within {@code subText} to give the system best flexibility * to choose where and how to trim {@code subText} when necessary. * * Starting from {@link VERSION_CODES#S}, spans that do not implement {@link Parcelable} will * be automatically dropped. * * @param subText The input text. When it was trimmed, {@code subTextStart} must be provided * correctly. * @param subTextStart 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. */ public void setInitialSurroundingSubText(@NonNull CharSequence subText, int subTextStart) { Objects.requireNonNull(subText); // For privacy protection reason, we don't carry password inputs to IMEs. if (isPasswordInputType(inputType)) { mInitialSurroundingText = null; return; } // Swap selection start and end if necessary. final int subTextSelStart = initialSelStart > initialSelEnd ? initialSelEnd - subTextStart : initialSelStart - subTextStart; final int subTextSelEnd = initialSelStart > initialSelEnd ? initialSelStart - subTextStart : initialSelEnd - subTextStart; final int subTextLength = subText.length(); // Unknown or invalid selection. if (subTextStart < 0 || subTextSelStart < 0 || subTextSelEnd > subTextLength) { mInitialSurroundingText = null; return; } if (subTextLength <= MEMORY_EFFICIENT_TEXT_LENGTH) { mInitialSurroundingText = new SurroundingText(subText, subTextSelStart, subTextSelEnd, subTextStart); return; } trimLongSurroundingText(subText, subTextSelStart, subTextSelEnd, subTextStart); } /** * Trims the initial surrounding text when it is over sized. Fundamental trimming rules are: * - The text before the cursor is the most important information to IMEs. * - The text after the cursor is the second important information to IMEs. * - The selected text is the least important information but it shall NEVER be truncated. When * it is too long, just drop it. *

     * For example, the subText can be viewed as
     *     TextBeforeCursor + Selection + TextAfterCursor
     * The result could be
     *     1. (maybeTrimmedAtHead)TextBeforeCursor + Selection + TextAfterCursor(maybeTrimmedAtTail)
     *     2. (maybeTrimmedAtHead)TextBeforeCursor + TextAfterCursor(maybeTrimmedAtTail)
* * @param subText The long text that needs to be trimmed. * @param selStart The text offset of the start of the selection. * @param selEnd The text offset of the end of the selection * @param subTextStart The position that the input text got trimmed. */ private void trimLongSurroundingText(CharSequence subText, int selStart, int selEnd, int subTextStart) { final int sourceSelLength = selEnd - selStart; // When the selected text is too long, drop it. final int newSelLength = (sourceSelLength > MAX_INITIAL_SELECTION_LENGTH) ? 0 : sourceSelLength; // Distribute rest of length quota to TextBeforeCursor and TextAfterCursor in 4:1 ratio. final int subTextBeforeCursorLength = selStart; final int subTextAfterCursorLength = subText.length() - selEnd; final int maxLengthMinusSelection = MEMORY_EFFICIENT_TEXT_LENGTH - newSelLength; final int possibleMaxBeforeCursorLength = Math.min(subTextBeforeCursorLength, (int) (0.8 * maxLengthMinusSelection)); int newAfterCursorLength = Math.min(subTextAfterCursorLength, maxLengthMinusSelection - possibleMaxBeforeCursorLength); int newBeforeCursorLength = Math.min(subTextBeforeCursorLength, maxLengthMinusSelection - newAfterCursorLength); // As trimming may happen at the head of TextBeforeCursor, calculate new starting position. int newBeforeCursorHead = subTextBeforeCursorLength - newBeforeCursorLength; // We don't want to cut surrogate pairs in the middle. Exam that at the new head and tail. if (isCutOnSurrogate(subText, selStart - newBeforeCursorLength, TrimPolicy.HEAD)) { newBeforeCursorHead = newBeforeCursorHead + 1; newBeforeCursorLength = newBeforeCursorLength - 1; } if (isCutOnSurrogate(subText, selEnd + newAfterCursorLength - 1, TrimPolicy.TAIL)) { newAfterCursorLength = newAfterCursorLength - 1; } // Now we know where to trim, compose the initialSurroundingText. final int newTextLength = newBeforeCursorLength + newSelLength + newAfterCursorLength; final CharSequence newInitialSurroundingText; if (newSelLength != sourceSelLength) { final CharSequence beforeCursor = subText.subSequence(newBeforeCursorHead, newBeforeCursorHead + newBeforeCursorLength); final CharSequence afterCursor = subText.subSequence(selEnd, selEnd + newAfterCursorLength); newInitialSurroundingText = TextUtils.concat(beforeCursor, afterCursor); } else { newInitialSurroundingText = subText .subSequence(newBeforeCursorHead, newBeforeCursorHead + newTextLength); } // As trimming may happen at the head, adjust cursor position in the initialSurroundingText // obj. newBeforeCursorHead = 0; final int newSelHead = newBeforeCursorHead + newBeforeCursorLength; final int newOffset = subTextStart + selStart - newSelHead; mInitialSurroundingText = new SurroundingText( newInitialSurroundingText, newSelHead, newSelHead + newSelLength, newOffset); } /** * Get length characters of text before the current cursor position. May be * {@code null} when the protocol is not supported. * * @param length The expected length of the text. * @param flags Supplies additional options controlling how the text is returned. May be * either 0 or {@link InputConnection#GET_TEXT_WITH_STYLES}. * @return the text before the cursor position; the length of the returned text might be less * than length. When there is no text before the cursor, an empty string will be * returned. It could also be {@code null} when the editor or system could not support this * protocol. */ @Nullable public CharSequence getInitialTextBeforeCursor( @IntRange(from = 0) int length, @InputConnection.GetTextType int flags) { if (mInitialSurroundingText == null) { return null; } int selStart = Math.min(mInitialSurroundingText.getSelectionStart(), mInitialSurroundingText.getSelectionEnd()); int n = Math.min(length, selStart); return ((flags & InputConnection.GET_TEXT_WITH_STYLES) != 0) ? mInitialSurroundingText.getText().subSequence(selStart - n, selStart) : TextUtils.substring(mInitialSurroundingText.getText(), selStart - n, selStart); } /** * Gets the selected text, if any. May be {@code null} when the protocol is not supported or the * selected text is way too long. * * @param flags Supplies additional options controlling how the text is returned. May be * either 0 or {@link InputConnection#GET_TEXT_WITH_STYLES}. * @return the text that is currently selected, if any. It could be an empty string when there * is no text selected. When {@code null} is returned, the selected text might be too long or * this protocol is not supported. */ @Nullable public CharSequence getInitialSelectedText(@InputConnection.GetTextType int flags) { if (mInitialSurroundingText == null) { return null; } // Swap selection start and end if necessary. final int correctedTextSelStart = initialSelStart > initialSelEnd ? initialSelEnd : initialSelStart; final int correctedTextSelEnd = initialSelStart > initialSelEnd ? initialSelStart : initialSelEnd; final int sourceSelLength = correctedTextSelEnd - correctedTextSelStart; int selStart = mInitialSurroundingText.getSelectionStart(); int selEnd = mInitialSurroundingText.getSelectionEnd(); if (selStart > selEnd) { int tmp = selStart; selStart = selEnd; selEnd = tmp; } final int selLength = selEnd - selStart; if (initialSelStart < 0 || initialSelEnd < 0 || selLength != sourceSelLength) { return null; } return ((flags & InputConnection.GET_TEXT_WITH_STYLES) != 0) ? mInitialSurroundingText.getText().subSequence(selStart, selEnd) : TextUtils.substring(mInitialSurroundingText.getText(), selStart, selEnd); } /** * Get length characters of text after the current cursor position. May be * {@code null} when the protocol is not supported. * * @param length The expected length of the text. * @param flags Supplies additional options controlling how the text is returned. May be * either 0 or {@link InputConnection#GET_TEXT_WITH_STYLES}. * @return the text after the cursor position; the length of the returned text might be less * than length. When there is no text after the cursor, an empty string will be * returned. It could also be {@code null} when the editor or system could not support this * protocol. */ @Nullable public CharSequence getInitialTextAfterCursor( @IntRange(from = 0) int length, @InputConnection.GetTextType int flags) { if (mInitialSurroundingText == null) { return null; } int surroundingTextLength = mInitialSurroundingText.getText().length(); int selEnd = Math.max(mInitialSurroundingText.getSelectionStart(), mInitialSurroundingText.getSelectionEnd()); int n = Math.min(length, surroundingTextLength - selEnd); return ((flags & InputConnection.GET_TEXT_WITH_STYLES) != 0) ? mInitialSurroundingText.getText().subSequence(selEnd, selEnd + n) : TextUtils.substring(mInitialSurroundingText.getText(), selEnd, selEnd + n); } /** * Gets the surrounding text around the current cursor, with beforeLength characters * of text before the cursor (start of the selection), afterLength characters of text * after the cursor (end of the selection), and all of the selected text. * *

The initial surrounding text for return could be trimmed if oversize. Fundamental trimming * rules are:

*
    *
  • The text before the cursor is the most important information to IMEs.
  • *
  • The text after the cursor is the second important information to IMEs.
  • *
  • The selected text is the least important information but it shall NEVER be truncated. * When it is too long, just drop it.
  • *
* *

For example, the subText can be viewed as TextBeforeCursor + Selection + TextAfterCursor. * The result could be:

*
    *
  1. (maybeTrimmedAtHead)TextBeforeCursor + Selection * + TextAfterCursor(maybeTrimmedAtTail)
  2. *
  3. (maybeTrimmedAtHead)TextBeforeCursor + TextAfterCursor(maybeTrimmedAtTail)
  4. *
* * @param beforeLength The expected length of the text before the cursor. * @param afterLength The expected length of the text after the cursor. * @param flags Supplies additional options controlling how the text is returned. May be either * {@code 0} or {@link InputConnection#GET_TEXT_WITH_STYLES}. * @return an {@link android.view.inputmethod.SurroundingText} object describing the surrounding * text and state of selection, or {@code null} if the editor or system could not support this * protocol. * @throws IllegalArgumentException if {@code beforeLength} or {@code afterLength} is negative. */ @Nullable public SurroundingText getInitialSurroundingText( @IntRange(from = 0) int beforeLength, @IntRange(from = 0) int afterLength, @InputConnection.GetTextType int flags) { Preconditions.checkArgumentNonnegative(beforeLength); Preconditions.checkArgumentNonnegative(afterLength); if (mInitialSurroundingText == null) { return null; } int length = mInitialSurroundingText.getText().length(); int selStart = mInitialSurroundingText.getSelectionStart(); int selEnd = mInitialSurroundingText.getSelectionEnd(); if (selStart > selEnd) { int tmp = selStart; selStart = selEnd; selEnd = tmp; } int before = Math.min(beforeLength, selStart); int after = Math.min(selEnd + afterLength, length); int offset = selStart - before; CharSequence newText = ((flags & InputConnection.GET_TEXT_WITH_STYLES) != 0) ? mInitialSurroundingText.getText().subSequence(offset, after) : TextUtils.substring(mInitialSurroundingText.getText(), offset, after); int newSelEnd = Math.min(selEnd - offset, length); return new SurroundingText(newText, before, newSelEnd, mInitialSurroundingText.getOffset() + offset); } private static boolean isCutOnSurrogate(CharSequence sourceText, int cutPosition, @TrimPolicy int policy) { switch (policy) { case TrimPolicy.HEAD: return Character.isLowSurrogate(sourceText.charAt(cutPosition)); case TrimPolicy.TAIL: return Character.isHighSurrogate(sourceText.charAt(cutPosition)); default: return false; } } private static boolean isPasswordInputType(int inputType) { final int variation = inputType & (TYPE_MASK_CLASS | TYPE_MASK_VARIATION); return variation == (TYPE_CLASS_TEXT | TYPE_TEXT_VARIATION_PASSWORD) || variation == (TYPE_CLASS_TEXT | TYPE_TEXT_VARIATION_WEB_PASSWORD) || variation == (TYPE_CLASS_NUMBER | TYPE_NUMBER_VARIATION_PASSWORD); } /** * Ensure that the data in this EditorInfo is compatible with an application * that was developed against the given target API version. This can * impact the following input types: * {@link InputType#TYPE_TEXT_VARIATION_WEB_EMAIL_ADDRESS}, * {@link InputType#TYPE_TEXT_VARIATION_WEB_PASSWORD}, * {@link InputType#TYPE_NUMBER_VARIATION_NORMAL}, * {@link InputType#TYPE_NUMBER_VARIATION_PASSWORD}. * *

This is called by the framework for input method implementations; * you should not generally need to call it yourself. * * @param targetSdkVersion The API version number that the compatible * application was developed against. */ public final void makeCompatible(int targetSdkVersion) { if (targetSdkVersion < android.os.Build.VERSION_CODES.HONEYCOMB) { switch (inputType&(TYPE_MASK_CLASS|TYPE_MASK_VARIATION)) { case TYPE_CLASS_TEXT|TYPE_TEXT_VARIATION_WEB_EMAIL_ADDRESS: inputType = TYPE_CLASS_TEXT|TYPE_TEXT_VARIATION_EMAIL_ADDRESS | (inputType&TYPE_MASK_FLAGS); break; case TYPE_CLASS_TEXT|TYPE_TEXT_VARIATION_WEB_PASSWORD: inputType = TYPE_CLASS_TEXT|TYPE_TEXT_VARIATION_PASSWORD | (inputType&TYPE_MASK_FLAGS); break; case TYPE_CLASS_NUMBER|TYPE_NUMBER_VARIATION_NORMAL: case TYPE_CLASS_NUMBER|TYPE_NUMBER_VARIATION_PASSWORD: inputType = TYPE_CLASS_NUMBER | (inputType&TYPE_MASK_FLAGS); break; } } } /** * Returns the initial {@link MotionEvent#ACTION_UP} tool type * {@link MotionEvent#getToolType(int)} responsible for focus on the current editor. * * @see #setInitialToolType(int) * @see MotionEvent#getToolType(int) * @see InputMethodService#onUpdateEditorToolType(int) * @return toolType {@link MotionEvent#getToolType(int)}. */ public @ToolType int getInitialToolType() { return mInitialToolType; } /** * Set the initial {@link MotionEvent#ACTION_UP} tool type {@link MotionEvent#getToolType(int)}. * that brought focus to the view. * * @see #getInitialToolType() * @see MotionEvent#getToolType(int) * @see InputMethodService#onUpdateEditorToolType(int) */ public void setInitialToolType(@ToolType int toolType) { mInitialToolType = toolType; } /** * Export the state of {@link EditorInfo} into a protocol buffer output stream. * * @param proto Stream to write the state to * @param fieldId FieldId of ViewRootImpl as defined in the parent message * @hide */ public void dumpDebug(ProtoOutputStream proto, long fieldId) { final long token = proto.start(fieldId); proto.write(INPUT_TYPE, inputType); proto.write(IME_OPTIONS, imeOptions); proto.write(PRIVATE_IME_OPTIONS, privateImeOptions); proto.write(PACKAGE_NAME, packageName); proto.write(FIELD_ID, this.fieldId); if (targetInputMethodUser != null) { proto.write(TARGET_INPUT_METHOD_USER_ID, targetInputMethodUser.getIdentifier()); } proto.end(token); } /** * Write debug output of this object. */ public void dump(Printer pw, String prefix) { dump(pw, prefix, true /* dumpExtras */); } /** @hide */ public void dump(Printer pw, String prefix, boolean dumpExtras) { pw.println(prefix + "inputType=0x" + Integer.toHexString(inputType) + " imeOptions=0x" + Integer.toHexString(imeOptions) + " privateImeOptions=" + privateImeOptions); pw.println(prefix + "actionLabel=" + actionLabel + " actionId=" + actionId); pw.println(prefix + "initialSelStart=" + initialSelStart + " initialSelEnd=" + initialSelEnd + " initialToolType=" + mInitialToolType + " initialCapsMode=0x" + Integer.toHexString(initialCapsMode)); pw.println(prefix + "hintText=" + hintText + " label=" + label); pw.println(prefix + "packageName=" + packageName + " autofillId=" + autofillId + " fieldId=" + fieldId + " fieldName=" + fieldName); if (dumpExtras) { pw.println(prefix + "extras=" + extras); } pw.println(prefix + "hintLocales=" + hintLocales); pw.println(prefix + "supportedHandwritingGestureTypes=" + InputMethodDebug.handwritingGestureTypeFlagsToString( mSupportedHandwritingGestureTypes)); pw.println(prefix + "supportedHandwritingGesturePreviewTypes=" + InputMethodDebug.handwritingGestureTypeFlagsToString( mSupportedHandwritingGesturePreviewTypes)); pw.println(prefix + "isStylusHandwritingEnabled=" + mIsStylusHandwritingEnabled); pw.println(prefix + "contentMimeTypes=" + Arrays.toString(contentMimeTypes)); if (targetInputMethodUser != null) { pw.println(prefix + "targetInputMethodUserId=" + targetInputMethodUser.getIdentifier()); } } /** * @return A deep copy of {@link EditorInfo}. * @hide */ @NonNull public final EditorInfo createCopyInternal() { final EditorInfo newEditorInfo = new EditorInfo(); newEditorInfo.inputType = inputType; newEditorInfo.imeOptions = imeOptions; newEditorInfo.privateImeOptions = privateImeOptions; newEditorInfo.internalImeOptions = internalImeOptions; newEditorInfo.actionLabel = TextUtils.stringOrSpannedString(actionLabel); newEditorInfo.actionId = actionId; newEditorInfo.initialSelStart = initialSelStart; newEditorInfo.initialSelEnd = initialSelEnd; newEditorInfo.initialCapsMode = initialCapsMode; newEditorInfo.mInitialToolType = mInitialToolType; newEditorInfo.hintText = TextUtils.stringOrSpannedString(hintText); newEditorInfo.label = TextUtils.stringOrSpannedString(label); newEditorInfo.packageName = packageName; newEditorInfo.autofillId = autofillId; newEditorInfo.fieldId = fieldId; newEditorInfo.fieldName = fieldName; newEditorInfo.extras = extras != null ? extras.deepCopy() : null; newEditorInfo.mInitialSurroundingText = mInitialSurroundingText; newEditorInfo.hintLocales = hintLocales; newEditorInfo.contentMimeTypes = ArrayUtils.cloneOrNull(contentMimeTypes); newEditorInfo.targetInputMethodUser = targetInputMethodUser; newEditorInfo.mSupportedHandwritingGestureTypes = mSupportedHandwritingGestureTypes; newEditorInfo.mSupportedHandwritingGesturePreviewTypes = mSupportedHandwritingGesturePreviewTypes; return newEditorInfo; } /** * Used to package this object into a {@link Parcel}. * * @param dest The {@link Parcel} to be written. * @param flags The flags used for parceling. */ public void writeToParcel(Parcel dest, int flags) { dest.writeInt(inputType); dest.writeInt(imeOptions); dest.writeString(privateImeOptions); dest.writeInt(internalImeOptions); TextUtils.writeToParcel(actionLabel, dest, flags); dest.writeInt(actionId); dest.writeInt(initialSelStart); dest.writeInt(initialSelEnd); dest.writeInt(initialCapsMode); dest.writeInt(mInitialToolType); TextUtils.writeToParcel(hintText, dest, flags); TextUtils.writeToParcel(label, dest, flags); dest.writeString(packageName); dest.writeParcelable(autofillId, flags); dest.writeInt(fieldId); dest.writeString(fieldName); dest.writeBundle(extras); dest.writeInt(mSupportedHandwritingGestureTypes); dest.writeInt(mSupportedHandwritingGesturePreviewTypes); if (Flags.editorinfoHandwritingEnabled()) { dest.writeBoolean(mIsStylusHandwritingEnabled); } dest.writeBoolean(mInitialSurroundingText != null); if (mInitialSurroundingText != null) { mInitialSurroundingText.writeToParcel(dest, flags); } if (hintLocales != null) { hintLocales.writeToParcel(dest, flags); } else { LocaleList.getEmptyLocaleList().writeToParcel(dest, flags); } dest.writeStringArray(contentMimeTypes); UserHandle.writeToParcel(targetInputMethodUser, dest); } /** * Used to make this class parcelable. */ public static final @android.annotation.NonNull Parcelable.Creator CREATOR = new Parcelable.Creator() { public EditorInfo createFromParcel(Parcel source) { EditorInfo res = new EditorInfo(); res.inputType = source.readInt(); res.imeOptions = source.readInt(); res.privateImeOptions = source.readString(); res.internalImeOptions = source.readInt(); res.actionLabel = TextUtils.CHAR_SEQUENCE_CREATOR.createFromParcel(source); res.actionId = source.readInt(); res.initialSelStart = source.readInt(); res.initialSelEnd = source.readInt(); res.initialCapsMode = source.readInt(); res.mInitialToolType = source.readInt(); res.hintText = TextUtils.CHAR_SEQUENCE_CREATOR.createFromParcel(source); res.label = TextUtils.CHAR_SEQUENCE_CREATOR.createFromParcel(source); res.packageName = source.readString(); res.autofillId = source.readParcelable(AutofillId.class.getClassLoader(), android.view.autofill.AutofillId.class); res.fieldId = source.readInt(); res.fieldName = source.readString(); res.extras = source.readBundle(); res.mSupportedHandwritingGestureTypes = source.readInt(); res.mSupportedHandwritingGesturePreviewTypes = source.readInt(); if (Flags.editorinfoHandwritingEnabled()) { res.mIsStylusHandwritingEnabled = source.readBoolean(); } boolean hasInitialSurroundingText = source.readBoolean(); if (hasInitialSurroundingText) { res.mInitialSurroundingText = SurroundingText.CREATOR.createFromParcel(source); } LocaleList hintLocales = LocaleList.CREATOR.createFromParcel(source); res.hintLocales = hintLocales.isEmpty() ? null : hintLocales; res.contentMimeTypes = source.readStringArray(); res.targetInputMethodUser = UserHandle.readFromParcel(source); return res; } public EditorInfo[] newArray(int size) { return new EditorInfo[size]; } }; public int describeContents() { return 0; } /** * Performs a loose equality check, which means there can be false negatives, but if the method * returns {@code true}, then both objects are guaranteed to be equal. *

    *
  • {@link #extras} is compared with {@link Bundle#kindofEquals}
  • *
  • {@link #actionLabel}, {@link #hintText}, and {@link #label} are compared with * {@link TextUtils#equals}, which does not account for Spans.
  • *
* @hide */ public boolean kindofEquals(@Nullable EditorInfo that) { if (that == null) return false; if (this == that) return true; return inputType == that.inputType && imeOptions == that.imeOptions && internalImeOptions == that.internalImeOptions && actionId == that.actionId && initialSelStart == that.initialSelStart && initialSelEnd == that.initialSelEnd && initialCapsMode == that.initialCapsMode && fieldId == that.fieldId && mSupportedHandwritingGestureTypes == that.mSupportedHandwritingGestureTypes && mSupportedHandwritingGesturePreviewTypes == that.mSupportedHandwritingGesturePreviewTypes && Objects.equals(autofillId, that.autofillId) && Objects.equals(privateImeOptions, that.privateImeOptions) && Objects.equals(packageName, that.packageName) && Objects.equals(fieldName, that.fieldName) && Objects.equals(hintLocales, that.hintLocales) && Objects.equals(targetInputMethodUser, that.targetInputMethodUser) && Arrays.equals(contentMimeTypes, that.contentMimeTypes) && TextUtils.equals(actionLabel, that.actionLabel) && TextUtils.equals(hintText, that.hintText) && TextUtils.equals(label, that.label) && (extras == that.extras || (extras != null && extras.kindofEquals(that.extras))) && (mInitialSurroundingText == that.mInitialSurroundingText || (mInitialSurroundingText != null && mInitialSurroundingText.isEqualTo(that.mInitialSurroundingText))); } }