Parcelable.Creator
public static interface Parcelable.Creator
android.os.Parcelable.Creator<T> |
Known Indirect Subclasses
|
必须实现的接口以及作为公共CREATOR字段提供的接口,该字段可从Parcel中生成Parcelable类的实例。
Summary
Public methods
createFromParcel
T createFromParcel (Parcel source)
创建一个Parcelable类的新实例,通过给定Parcel实例化它,其中的数据先前由 Parcelable.writeToParcel()
编写。
Parameters |
source |
Parcel : The Parcel to read the object's data from. |
Returns |
T |
Returns a new instance of the Parcelable class. |
newArray
T[] newArray (int size)
创建一个Parcelable类的新数组。
Parameters |
size |
int : Size of the array. |
Returns |
T[] |
Returns an array of the Parcelable class, with every entry initialized to null. |