CorrectionInfo
class CorrectionInfo : Parcelable
kotlin.Any | |
↳ | android.view.inputmethod.CorrectionInfo |
Information about a single text correction that an editor has reported to an input method.
Summary
Inherited constants | |
---|---|
Public constructors | |
---|---|
CorrectionInfo(offset: Int, oldText: CharSequence!, newText: CharSequence!) |
Public methods | |
---|---|
Int | |
CharSequence! |
Return the new text that corrects what was typed by the user. |
Int |
Return the offset position of this correction in the text. |
CharSequence! |
Return the text that has actually been typed by the user, and which has been corrected. |
String |
toString() |
Unit |
writeToParcel(dest: Parcel, flags: Int) Used to package this object into a |
Properties | |
---|---|
static Parcelable.Creator<CorrectionInfo!> |
Used to make this class parcelable. |
Public constructors
CorrectionInfo
CorrectionInfo(
offset: Int,
oldText: CharSequence!,
newText: CharSequence!)
Parameters | |
---|---|
offset |
Int: The offset in the edited text where the old and new text start. |
oldText |
CharSequence!: The old text that has been replaced. |
newText |
CharSequence!: The replacement text. |
Public methods
describeContents
fun describeContents(): Int
Return | |
---|---|
Int |
a bitmask indicating the set of special object types marshaled by this Parcelable object instance. Value is either 0 or android.os.Parcelable#CONTENTS_FILE_DESCRIPTOR |
getNewText
fun getNewText(): CharSequence!
Return the new text that corrects what was typed by the user.
getOffset
fun getOffset(): Int
Return the offset position of this correction in the text. Both the getOldText()
and getNewText()
start at this offset.
getOldText
fun getOldText(): CharSequence!
Return the text that has actually been typed by the user, and which has been corrected.
toString
fun toString(): String
Return | |
---|---|
String |
a string representation of the object. |
writeToParcel
fun writeToParcel(
dest: Parcel,
flags: Int
): Unit
Used to package this object into a Parcel
.
Parameters | |
---|---|
dest |
Parcel: The Parcel to be written. |
flags |
Int: The flags used for parceling. |
Properties
CREATOR
static val CREATOR: Parcelable.Creator<CorrectionInfo!>
Used to make this class parcelable.