能解決這個(gè)問題真的太讓人興奮,這里要普及一個(gè)知識(shí)點(diǎn),那就是所謂的序列化。
創(chuàng)新互聯(lián)專注于企業(yè)營(yíng)銷型網(wǎng)站建設(shè)、網(wǎng)站重做改版、達(dá)茂旗網(wǎng)站定制設(shè)計(jì)、自適應(yīng)品牌網(wǎng)站建設(shè)、HTML5建站、成都做商城網(wǎng)站、集團(tuán)公司官網(wǎng)建設(shè)、外貿(mào)營(yíng)銷網(wǎng)站建設(shè)、高端網(wǎng)站制作、響應(yīng)式網(wǎng)頁設(shè)計(jì)等建站業(yè)務(wù),價(jià)格優(yōu)惠性價(jià)比高,為達(dá)茂旗等各大城市提供網(wǎng)站開發(fā)制作服務(wù)。
序列化:將對(duì)象狀態(tài)轉(zhuǎn)換為可保持或傳輸?shù)母袷降倪^程。與序列化相對(duì)的是反序列化,它將流轉(zhuǎn)換為對(duì)象。這兩個(gè)過程結(jié)合起來,可以輕松地存儲(chǔ)和傳輸數(shù)據(jù)。
大家讀不讀得懂先暫且不說,因?yàn)楦拍钍裁吹臇|西我也最煩了,大家只要知道用序列化能實(shí)現(xiàn)我們想做的事情就OK了(就是標(biāo)題所說的功能)。
在大多數(shù)實(shí)戰(zhàn)項(xiàng)目中進(jìn)行兩個(gè)頁面之間的切換時(shí),不會(huì)只傳一個(gè)int或者string那么輕松,就算是傳稍微加點(diǎn)料的大眾類型(比如int數(shù)組或List
但人們總是“貪婪”的,哈哈,有的時(shí)候這些簡(jiǎn)單的類型無法滿足我們的需求,我們通過會(huì)要求傳遞一個(gè)自定義的類或者該類的集合,我們不知道這么說大家頭腦中有沒有概念。舉個(gè)例子:我們要向另一個(gè)activity傳遞一個(gè)人(Person)的對(duì)象,Android中沒有Person這個(gè)類,是我們自定義的。所以要想利用Intent去傳遞Person或者List
在給大家上代碼示例之前,還要再多說點(diǎn),在Android中使用序列化有兩種方法:(1)實(shí)現(xiàn)Serializable接口(2)實(shí)現(xiàn)Parcelable接口
其中Parcelable是Android特有的功能,效率要比實(shí)現(xiàn)Serializable接口高。實(shí)現(xiàn)Serializable接口非常簡(jiǎn)單,聲明一下就可以了。而實(shí)現(xiàn)Parcelable雖然稍微復(fù)雜一些,但效率高,既然是Android特有用來做序列化使用的,那我們就推薦用這種方法。
下面請(qǐng)看代碼示例:
首先需要寫一個(gè)實(shí)現(xiàn)Parcelable接口的類,代碼中的1,2,3條是實(shí)現(xiàn)Parcelable接口序列化對(duì)象必須要有的。
//1、實(shí)現(xiàn)Parcelable接口 public class Person implements Parcelable{ private String name private int age; public Person() {} public Person(String name, int age) { this.name = name; this.age = age; } public String getName() { returnthis.name; } public void setName(String name) { this.name = name; } public int getAge() { returnthis.age; } public void setAge(int age) { this.age = age; } @Override public int describeContents() { return 0; } //2、實(shí)現(xiàn)Parcelable接口的public void writeToParcel(Parcel dest, int flags)方法 //通常進(jìn)行重寫 @Override public void writeToParcel(Parcel dest, int flags) { //把數(shù)據(jù)寫入Parcel dest.writeString(name); dest.writeInt(age); } //3、自定義類型中必須含有一個(gè)名稱為CREATOR的靜態(tài)成員,該成員對(duì)象要求實(shí)現(xiàn)Parcelable.Creator接口及其方法 public static final Parcelable.CreatorCREATOR = new Parcelable.Creator () { @Override public Person createFromParcel(Parcel source) { //從Parcel中讀取數(shù)據(jù) //此處read順序依據(jù)write順序 return new Person(source.readString(), source.readInt()); } @Override public Person[] newArray(int size) { return new Person[size]; } }; }
這樣一個(gè)實(shí)現(xiàn)Parcelable接口序列化類就創(chuàng)建好了,那么我們?nèi)绾斡闷鋪磉M(jìn)行傳遞呢?在原activity中我們需要這樣傳遞數(shù)據(jù)
ArrayListlPersonSet = new ArrayList (); Person p1 = new Person(“張三”,20); lPersonSet.add(p1); Person p2 = new Person(“李四”,22); lPersonSet.add(p2); Person p3 = new Person(“王五”,21); lPersonSet.add(p3); //進(jìn)行頁面跳轉(zhuǎn) Intent intent = new Intent(); intent.putParcelableArrayListExtra("com.example.utilities.personset", lPersonSet); intent.setClass(MyActivity.this, OtherActivity.class); MyActivity.this.startActivity(intent);
而在OtherActivity中呢?我們需要這樣接收數(shù)據(jù)
ArrayListlPersonSet = new ArrayList (); Intent intent = getIntent(); lPersonSet = intent.getParcelableArrayListExtra("com.example.utilities.personset");
這樣就搞定一切了,其他的形式大家可以自由發(fā)揮了,重點(diǎn)還是在如何實(shí)現(xiàn)Parcelable接口序列化類上。