Please note that the contents of this offline web site may be out of date. To access the most recent documentation visit the online version .
Note that links that point to online resources are green in color and will open in a new window.
We would love it if you could give us feedback about this material by filling this form (You have to be online to fill it)
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

Used to make this class parcelable.

Public Constructors

public TextInfo ( String text)

Constructor.

Parameters
text the text which will be input to TextService

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

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)

Public Methods

public int describeContents ()

Used to make this class parcelable.

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

public int getCookie ()

Returns
  • the cookie of TextInfo

public int getSequence ()

Returns
  • the sequence of TextInfo

public String getText ()

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

public void writeToParcel ( Parcel dest, int flags)

Used to package this object into a Parcel .

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