java.lang.Object | |
↳ | android.view.inputmethod.CorrectionInfo |
Information about a single text correction that an editor has reported to an input method.
[Expand]
Inherited Constants | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From interface
android.os.Parcelable
|
Fields | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
CREATOR | Used to make this class parcelable. |
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Describe the kinds of special objects contained in this Parcelable's
marshalled representation.
| |||||||||||
Return the new text that corrects what was typed by the user.
| |||||||||||
Return the offset position of this correction in the text.
| |||||||||||
Return the text that has actually been typed by the user, and which has been corrected.
| |||||||||||
Returns a string containing a concise, human-readable description of this
object.
| |||||||||||
Used to package this object into a
Parcel . |
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Object
| |||||||||||
From interface
android.os.Parcelable
|
Used to make this class parcelable.
offset | The offset in the edited text where the old and new text start. |
---|---|
oldText | The old text that has been replaced. |
newText | The replacement text. |
Describe the kinds of special objects contained in this Parcelable's marshalled representation.
Return the new text that corrects what was typed by the user.
Return the offset position of this correction in the text. Both the getOldText()
and
getNewText()
start at this offset.
Return the text that has actually been typed by the user, and which has been corrected.
Returns a string containing a concise, human-readable description of this object. Subclasses are encouraged to override this method and provide an implementation that takes into account the object's type and data. The default implementation is equivalent to the following expression:
getClass().getName() + '@' + Integer.toHexString(hashCode())
See Writing a useful
toString
method
if you intend implementing your own toString
method.