实现Parcelable

实现ParcelableActivity 之间通过 intent 传递 object 时 该 object 的 class 需要实现 Parcelable nbsp Interfacefor nbsp Parcel Classesimple

Activity之间通过intent传递object时,该object的class需要实现Parcelable。

 

Interface for classes whose instances can be written to and restored from a Parcel. Classes implementing the Parcelable interface must also have a non-null static field called CREATOR of a type that implements the Parcelable.Creator interface.

A typical implementation of Parcelable is:

public class MyParcelable implements Parcelable { private int mData; public int describeContents() { //一般返回0即可 return 0; } public void writeToParcel(Parcel out, int flags) { out.writeInt(mData); } public static final Parcelable.Creator<MyParcelable> CREATOR = new Parcelable.Creator<MyParcelable>() { public MyParcelable createFromParcel(Parcel in) { return new MyParcelable(in); } public MyParcelable[] newArray(int size) { return new MyParcelable[size]; } }; private MyParcelable(Parcel in) { mData = in.readInt(); } }

 http://developer.android.com/reference/android/os/Parcelable.html

 

最核心的地方是

private MyParcelable(Parcel in)

writeToParcel(Parcel out, int flags)

读写顺序要一致。

 

public class Bill implements Parcelable { Integer fee; String title; Boolean result; public int describeContents() { return 0; } public void writeToParcel(Parcel out, int flags) { out.writeInt(fee); out.writeString(title); out.writeByte((byte) (result!=null && result ? 1 : 0)); } public static final Parcelable.Creator<Bill> CREATOR = new Parcelable.Creator<Bill>() { public Bill createFromParcel(Parcel in) { return new Bill(in); } public Bill[] newArray(int size) { return new Bill[size]; } }; private Bill(Parcel in) { fee = in.readInt(); title = in.readString(); result = (in.readByte()==1); } }

 

 

 

 

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请联系我们举报,一经查实,本站将立刻删除。

发布者:全栈程序员-站长,转载请注明出处:https://javaforall.net/232847.html原文链接:https://javaforall.net

(0)
全栈程序员-站长的头像全栈程序员-站长


相关推荐

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注

关注全栈程序员社区公众号