Most visited

Recently visited

Added in API level 11

CorrectionInfo

public final class CorrectionInfo
extends Object implements Parcelable

java.lang.Object
   ↳ android.view.inputmethod.CorrectionInfo


有关编辑者向输入法报告的单个文本更正的信息。

Summary

Inherited constants

From interface android.os.Parcelable

Fields

public static final Creator<CorrectionInfo> CREATOR

用于使这个类可以分类。

Public constructors

CorrectionInfo(int offset, CharSequence oldText, CharSequence newText)

Public methods

int describeContents()

描述此Parcelable实例的封送表示中包含的特殊对象的种类。

CharSequence getNewText()

返回更正用户输入内容的新文本。

int getOffset()

在文本中返回此更正的偏移位置。

CharSequence getOldText()

返回用户实际输入的内容以及已更正的内容。

String toString()

返回对象的字符串表示形式。

void writeToParcel(Parcel dest, int flags)

用于将此对象打包成 Parcel

Inherited methods

From class java.lang.Object
From interface android.os.Parcelable

Fields

CREATOR

Added in API level 11
Creator<CorrectionInfo> CREATOR

用于使这个类可以分类。

Public constructors

CorrectionInfo

Added in API level 11
CorrectionInfo (int offset, 
                CharSequence oldText, 
                CharSequence newText)

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

Added in API level 11
int describeContents ()

描述此Parcelable实例的封送表示中包含的特殊对象的种类。 例如,如果对象在writeToParcel(Parcel, int)的输出中包含writeToParcel(Parcel, int) ,则此方法的返回值必须包含CONTENTS_FILE_DESCRIPTOR位。

Returns
int a bitmask indicating the set of special object types marshaled by this Parcelable object instance.

getNewText

Added in API level 11
CharSequence getNewText ()

返回更正用户输入内容的新文本。

Returns
CharSequence

getOffset

Added in API level 11
int getOffset ()

在文本中返回此更正的偏移位置。 getOldText()getNewText()都以此偏移量开始。

Returns
int

getOldText

Added in API level 11
CharSequence getOldText ()

返回用户实际输入的内容以及已更正的内容。

Returns
CharSequence

toString

Added in API level 11
String toString ()

返回对象的字符串表示形式。 通常, toString方法返回一个“文本表示”该对象的字符串。 结果应该是一个简洁但内容丰富的表述,对于一个人来说很容易阅读。 建议所有子类重写此方法。

ObjecttoString方法返回一个字符串,其中包含对象为实例的类的名称,符号字符“ @ ”以及对象的哈希代码的无符号十六进制表示形式。 换句话说,这个方法返回一个字符串,其值等于:

 getClass().getName() + '@' + Integer.toHexString(hashCode())
 

Returns
String a string representation of the object.

writeToParcel

Added in API level 11
void writeToParcel (Parcel dest, 
                int flags)

用于将此对象打包成 Parcel

Parameters
dest Parcel: The Parcel to be written.
flags int: The flags used for parceling.

Hooray!