Android APIs
public final class

TextInfo

extends Object
implements Parcelable
java.lang.Object
   ↳ android.view.textservice.TextInfo

Class Overview

This class contains a metadata of the input of TextService

Summary

[Expand]
Inherited Constants
From interface android.os.Parcelable
Fields
public static final Creator<TextInfo> CREATOR Used to make this class parcelable.
Public Constructors
TextInfo(String text)
Constructor.
TextInfo(String text, int cookie, int sequenceNumber)
Constructor.
TextInfo(CharSequence charSequence, int start, int end, int cookie, int sequenceNumber)
Constructor.
TextInfo(Parcel source)
Public Methods
int describeContents()
Used to make this class parcelable.
CharSequence getCharSequence()
int getCookie()
int getSequence()
String getText()
void writeToParcel(Parcel dest, int flags)
Used to package this object into a Parcel.
[Expand]
Inherited Methods
From class java.lang.Object
From interface android.os.Parcelable

Fields

public static final Creator<TextInfo> CREATOR

Added in API level 14

Used to make this class parcelable.

Public Constructors

public TextInfo (String text)

Added in API level 14

Constructor.

Parameters
text the text which will be input to TextService

public TextInfo (String text, int cookie, int sequenceNumber)

Added in API level 14

Constructor.

Parameters
text the text which will be input to TextService
cookie the cookie for this TextInfo
sequenceNumber the sequence number for this TextInfo

public TextInfo (CharSequence charSequence, int start, int end, int cookie, int sequenceNumber)

Added in API level 21

Constructor.

Parameters
charSequence the text which will be input to TextService. Attached spans that implement ParcelableSpan will also be marshaled alongside with the text.
start the beginning of the range of text (inclusive).
end the end of the range of text (exclusive).
cookie the cookie for this TextInfo
sequenceNumber the sequence number for this TextInfo

public TextInfo (Parcel source)

Added in API level 14

Public Methods

public int describeContents ()

Added in API level 14

Used to make this class parcelable.

Returns
  • a bitmask indicating the set of special object types marshalled by the Parcelable.

public CharSequence getCharSequence ()

Added in API level 21

Returns
  • the charSequence which is an input of a text service. This may have some parcelable spans.

public int getCookie ()

Added in API level 14

Returns
  • the cookie of TextInfo

public int getSequence ()

Added in API level 14

Returns
  • the sequence of TextInfo

public String getText ()

Added in API level 14

Returns
  • the text which is an input of a text service

public void writeToParcel (Parcel dest, int flags)

Added in API level 14

Used to package this object into a Parcel.

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