Most visited

Recently visited

Added in API level 14

EasyEditSpan

public class EasyEditSpan
extends Object implements ParcelableSpan

java.lang.Object
   ↳ android.text.style.EasyEditSpan


Provides an easy way to edit a portion of text.

The TextView uses this span to allow the user to delete a chuck of text in one click.

TextView removes the span when the user deletes the whole text or modifies it.

This span can be also used to receive notification when the user deletes or modifies the text;

Summary

Constants

String EXTRA_TEXT_CHANGED_TYPE

The extra key field in the pending intent that describes how the text changed.

int TEXT_DELETED

The value of EXTRA_TEXT_CHANGED_TYPE when the text wrapped by this span is deleted.

int TEXT_MODIFIED

The value of EXTRA_TEXT_CHANGED_TYPE when the text wrapped by this span is modified.

Inherited constants

From interface android.os.Parcelable

Public constructors

EasyEditSpan()

Creates the span.

EasyEditSpan(PendingIntent pendingIntent)
EasyEditSpan(Parcel source)

Constructor called from TextUtils to restore the span.

Public methods

int describeContents()

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

int getSpanTypeId()

Return a special type identifier for this span class.

void writeToParcel(Parcel dest, int flags)

Flatten this object in to a Parcel.

Inherited methods

From class java.lang.Object
From interface android.text.ParcelableSpan
From interface android.os.Parcelable

Constants

EXTRA_TEXT_CHANGED_TYPE

Added in API level 18
String EXTRA_TEXT_CHANGED_TYPE

The extra key field in the pending intent that describes how the text changed.

See also:

Constant Value: "android.text.style.EXTRA_TEXT_CHANGED_TYPE"

TEXT_DELETED

Added in API level 18
int TEXT_DELETED

The value of EXTRA_TEXT_CHANGED_TYPE when the text wrapped by this span is deleted.

Constant Value: 1 (0x00000001)

TEXT_MODIFIED

Added in API level 18
int TEXT_MODIFIED

The value of EXTRA_TEXT_CHANGED_TYPE when the text wrapped by this span is modified.

Constant Value: 2 (0x00000002)

Public constructors

EasyEditSpan

Added in API level 14
EasyEditSpan ()

Creates the span. No intent is sent when the wrapped text is modified or deleted.

EasyEditSpan

Added in API level 18
EasyEditSpan (PendingIntent pendingIntent)

Parameters
pendingIntent PendingIntent: The intent will be sent when the wrapped text is deleted or modified. When the pending intent is sent, EXTRA_TEXT_CHANGED_TYPE is added in the intent to describe how the text changed.

EasyEditSpan

Added in API level 18
EasyEditSpan (Parcel source)

Constructor called from TextUtils to restore the span.

Parameters
source Parcel

Public methods

describeContents

Added in API level 14
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.

getSpanTypeId

Added in API level 14
int getSpanTypeId ()

Return a special type identifier for this span class.

Returns
int

writeToParcel

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

Flatten this object in to a Parcel.

Parameters
dest Parcel: The Parcel in which the object should be written.
flags int: Additional flags about how the object should be written. May be 0 or PARCELABLE_WRITE_RETURN_VALUE.

Hooray!