Most visited

Recently visited

Added in API level 1

Annotation

public class Annotation
extends Object implements ParcelableSpan

java.lang.Object
   ↳ android.text.Annotation


注释是在TextView保存/恢复周期内保留的简单键 - 值对,可用于保留需要为文本区域维护的特定于应用程序的数据。

Summary

Inherited constants

From interface android.os.Parcelable

Public constructors

Annotation(String key, String value)
Annotation(Parcel src)

Public methods

int describeContents()

描述此Parcelable实例的封送表示中包含的特殊对象的种类。

String getKey()
int getSpanTypeId()

返回此跨度类的特殊类型标识符。

String getValue()
void writeToParcel(Parcel dest, int flags)

将此对象平铺到一个包裹中。

Inherited methods

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

Public constructors

Annotation

Added in API level 1
Annotation (String key, 
                String value)

Parameters
key String
value String

Annotation

Added in API level 3
Annotation (Parcel src)

Parameters
src Parcel

Public methods

describeContents

Added in API level 3
int describeContents ()

描述此Parcelable实例的封送表示中包含的特殊对象的种类。 例如,如果对象将在writeToParcel(Parcel, int)的输出中包含writeToParcel(Parcel, int) ,则此方法的返回值必须包含CONTENTS_FILE_DESCRIPTOR位。

Returns
int a bitmask indicating the set of special object types marshaled by this Parcelable object instance.

getKey

Added in API level 1
String getKey ()

Returns
String

getSpanTypeId

Added in API level 3
int getSpanTypeId ()

返回此跨度类的特殊类型标识符。

Returns
int

getValue

Added in API level 1
String getValue ()

Returns
String

writeToParcel

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

将此对象平铺到一个包裹中。

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!