Android Studio
Added in API level 34

SelectRangeGesture


public final class SelectRangeGesture
extends PreviewableHandwritingGesture implements Parcelable

java.lang.Object
   ↳ android.view.inputmethod.HandwritingGesture
     ↳ android.view.inputmethod.PreviewableHandwritingGesture
       ↳ android.view.inputmethod.SelectRangeGesture


A subclass of HandwritingGesture for selecting a range of text by defining start and end rectangles. This can be useful when the range cannot be defined with a single rectangle. This class holds the information required for selection of text in toolkit widgets like TextView.

Note: this selects text within a range between two given areas. To select all text within a single area, use SelectGesture

Summary

Nested classes

class SelectRangeGesture.Builder

Builder for SelectRangeGesture

Inherited constants

Fields

public static final Creator<SelectRangeGesture> CREATOR

Used to make this class parcelable.

Public methods

int describeContents()

Describe the kinds of special objects contained in this Parcelable instance's marshaled representation.

boolean equals(Object o)

Indicates whether some other object is "equal to" this one.

int getGranularity()

Returns Granular level on which text should be operated.

RectF getSelectionEndArea()

Returns the Selection end area RectF in screen coordinates.

RectF getSelectionStartArea()

Returns the Selection start area RectF in screen coordinates.

int hashCode()

Returns a hash code value for the object.

void writeToParcel(Parcel dest, int flags)

Used to package this object into a Parcel.

Inherited methods

Fields

CREATOR

Added in API level 34
public static final Creator<SelectRangeGesture> CREATOR

Used to make this class parcelable.

Public methods

describeContents

Added in API level 34
public 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.
Value is either 0 or

equals

Added in API level 34
public boolean equals (Object o)

Indicates whether some other object is "equal to" this one.

The equals method implements an equivalence relation on non-null object references:

An equivalence relation partitions the elements it operates on into equivalence classes; all the members of an equivalence class are equal to each other. Members of an equivalence class are substitutable for each other, at least for some purposes.

Parameters
o Object: the reference object with which to compare.
Returns
boolean true if this object is the same as the obj argument; false otherwise.

getGranularity

Added in API level 34
public int getGranularity ()

Returns Granular level on which text should be operated.

Returns int Value is one of the following:

See also:

getSelectionEndArea

Added in API level 34
public RectF getSelectionEndArea ()

Returns the Selection end area RectF in screen coordinates. Getter for selection area set with Builder.setSelectionEndArea(RectF).

Returns
RectF This value cannot be null.

getSelectionStartArea

Added in API level 34
public RectF getSelectionStartArea ()

Returns the Selection start area RectF in screen coordinates. Getter for selection area set with Builder.setSelectionStartArea(RectF).

Returns
RectF This value cannot be null.

hashCode

Added in API level 34
public int hashCode ()

Returns a hash code value for the object. This method is supported for the benefit of hash tables such as those provided by HashMap.

The general contract of hashCode is:

Returns
int a hash code value for this object.

writeToParcel

Added in API level 34
public void writeToParcel (Parcel dest, 
                int flags)

Used to package this object into a Parcel.

Parameters
dest Parcel: The Parcel to be written.
This value cannot be null.
flags int: The flags used for parceling.