The use of Parcelable serialization. For the use of intent. getParcelableArrayExtra, intentparcelable

Source: Internet
Author: User

The use of Parcelable serialization. For the use of intent. getParcelableArrayExtra, intentparcelable

Parcelable is more efficient than Serializable

 

public class ChargeMode implements Parcelable{    public String name;    public int playway;    public String price;    public String validTime;    public ChargeMode(){            }    private ChargeMode(Parcel in){        name = in.readString();        playway = in.readInt();        price = in.readString();        validTime = in.readString();    }    @Override    public int describeContents() {        return 0;    }    @Override    public void writeToParcel(Parcel dest, int flags) {        dest.writeString(name);        dest.writeInt(playway);        dest.writeString(price);        dest.writeString(validTime);                }    public static final Creator<ChargeMode> CREATOR = new Creator<ChargeMode>() {                @Override        public ChargeMode[] newArray(int size) {            return new ChargeMode[size];        }                @Override        public ChargeMode createFromParcel(Parcel source) {            return new ChargeMode(source);        }    };}

 

 

Store serialized Arrays
Intent intent = new Intent (MovieSynopsis. this, PaymentActivity. class); intent. putExtra (Constant. CHARGE_MODE, chargeModes); // save to ChargeMode []
startActivity(intent);

 

When obtaining the value of ChargeMode [], you must first Parcelable [] and then convert it to ChargeMode [].
Parcelable[] mChargeModes=intent.getParcelableArrayExtra(Constant.CHARGE_MODE);

ChargeMode chargeModes=(ChargeMode) mChargeModes[0];

 

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.