to top
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 sequence)
Constructor.
TextInfo(Parcel source)
Public Methods
int describeContents()
Used to make this class parcelable.
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 sequence)

Added in API level 14

Constructor.

Parameters
text the text which will be input to TextService
cookie the cookie for this TextInfo
sequence 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 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.