public
class
ExtractedTextRequest
extends Object
implements
Parcelable
java.lang.Object | |
↳ | android.view.inputmethod.ExtractedTextRequest |
Description of what an input method would like from an application when extract text from its input editor.
Inherited constants |
---|
From
interface
android.os.Parcelable
|
Fields | |
---|---|
public
static
final
Creator<ExtractedTextRequest> |
CREATOR
Used to make this class parcelable. |
public
int |
flags
Additional request flags, having the same possible values as the
flags parameter of |
public
int |
hintMaxChars
Hint for the maximum number of characters to return. |
public
int |
hintMaxLines
Hint for the maximum number of lines to return. |
public
int |
token
Arbitrary integer that can be supplied in the request, which will be delivered back when reporting updates. |
Public constructors | |
---|---|
ExtractedTextRequest()
|
Public methods | |
---|---|
int
|
describeContents()
Describe the kinds of special objects contained in this Parcelable instance's marshaled representation. |
void
|
writeToParcel(Parcel dest, int flags)
Used to package this object into a |
Inherited methods | |
---|---|
From
class
java.lang.Object
| |
From
interface
android.os.Parcelable
|
Creator<ExtractedTextRequest> CREATOR
Used to make this class parcelable.
int flags
Additional request flags, having the same possible values as the
flags parameter of InputConnection.getTextBeforeCursor()
.
int hintMaxChars
Hint for the maximum number of characters to return.
int token
Arbitrary integer that can be supplied in the request, which will be delivered back when reporting updates.
int describeContents ()
Describe the kinds of special objects contained in this Parcelable
instance's marshaled representation. For example, if the object will
include a file descriptor in the output of writeToParcel(Parcel, int)
,
the return value of this method must include the
CONTENTS_FILE_DESCRIPTOR
bit.
Returns | |
---|---|
int |
a bitmask indicating the set of special object types marshaled by this Parcelable object instance. |
void writeToParcel (Parcel dest, int flags)
Used to package this object into a Parcel
.
Parameters | |
---|---|
dest |
Parcel :
The Parcel to be written. |
flags |
int :
The flags used for parceling.
|