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

? Examples
TextInfo( String text)
Constructor.

? Examples
TextInfo( String text, int cookie, int sequence)
Constructor.

? Examples
TextInfo( Parcel source)
Public Methods

? Examples
int describeContents()
Used to make this class parcelable.

? Examples
int getCookie()

? Examples
int getSequence()

? Examples
String getText()

? Examples
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.
No examples for this method.
Frequently called with: [Clear]
Portions of this page are reproduced from work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License. The original page is available here.