Fields Summary |
---|
public CharSequence | textThe text that has been extracted. |
public int | startOffsetThe offset in the overall text at which the extracted text starts. |
public int | partialStartOffsetIf the content is a report of a partial text change, this is the
offset where the change starts and it runs until
{@link #partialEndOffset}. If the content is the full text, this
field is -1. |
public int | partialEndOffsetIf the content is a report of a partial text change, this is the offset
where the change ends. Note that the actual text may be larger or
smaller than the difference between this and {@link #partialEndOffset},
meaning a reduction or increase, respectively, in the total text. |
public int | selectionStartThe offset where the selection currently starts within the extracted
text. The real selection start position is at
startOffset+selectionStart. |
public int | selectionEndThe offset where the selection currently ends within the extracted
text. The real selection end position is at
startOffset+selectionEnd. |
public static final int | FLAG_SINGLE_LINEBit for {@link #flags}: set if the text being edited can only be on
a single line. |
public static final int | FLAG_SELECTINGBit for {@link #flags}: set if the editor is currently in selection mode. |
public int | flagsAdditional bit flags of information about the edited text. |
public static final Parcelable.Creator | CREATORUsed to make this class parcelable. |