Most visited

Recently visited

Added in API level 1

BackgroundColorSpan

public class BackgroundColorSpan
extends CharacterStyle implements UpdateAppearance, ParcelableSpan

java.lang.Object
    android.text.style.CharacterStyle
      android.text.style.BackgroundColorSpan


摘要(Summary)

Inherited constants

From interface android.os.Parcelable

Public constructors

BackgroundColorSpan(int color)
BackgroundColorSpan(Parcel src)

公共方法(Public methods)

int describeContents()

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

int getBackgroundColor()
int getSpanTypeId()

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

void updateDrawState(TextPaint ds)
void writeToParcel(Parcel dest, int flags)

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

继承方法(Inherited methods)

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

Public constructors

BackgroundColorSpan

Added in API level 1
BackgroundColorSpan (int color)

参数(Parameters)
color int

BackgroundColorSpan

Added in API level 3
BackgroundColorSpan (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.

getBackgroundColor

Added in API level 1
int getBackgroundColor ()

返回(Returns)
int

getSpanTypeId

Added in API level 3
int getSpanTypeId ()

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

返回(Returns)
int

updateDrawState

Added in API level 1
void updateDrawState (TextPaint ds)

参数(Parameters)
ds TextPaint

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!