這篇文章主要介紹“怎么使用Intent傳遞對象”,在日常操作中,相信很多人在怎么使用Intent傳遞對象問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”怎么使用Intent傳遞對象”的疑惑有所幫助!接下來,請跟著小編一起來學(xué)習(xí)吧!
網(wǎng)站的建設(shè)創(chuàng)新互聯(lián)建站專注網(wǎng)站定制,經(jīng)驗(yàn)豐富,不做模板,主營網(wǎng)站定制開發(fā).小程序定制開發(fā),H5頁面制作!給你煥然一新的設(shè)計體驗(yàn)!已為衛(wèi)生間隔斷等企業(yè)提供專業(yè)服務(wù)。Intent的用法以及非常簡單了,可以利用它來啟動活動,發(fā)送廣播,啟動服務(wù)等,當(dāng)然,也可以用來傳值
Intent intent=new Intent(OneActivity.this,TwoActivity.class); intent.putExtra("string_data","hello"); startActivity(intent);
但是,當(dāng)我們想要傳遞一些自定義的對象的時候,好像就有點(diǎn)無從下手了
這就要說到傳遞對象的兩種方式:Serializable和Parcelable
Serializable是序列化的意思,將一個對象轉(zhuǎn)換成礦業(yè)存儲或者可以傳輸?shù)臓顟B(tài),序列化后的對象可以在網(wǎng)絡(luò)上進(jìn)行傳輸,也可以存儲到本地。而序列化的方法也很簡單,只需要讓一個類去實(shí)現(xiàn)Serializable這個接口就行了
比如說有一個Apple類
public class Apple implements Aerializable{ private Stirng name; private int price; public String getName(){ return name; } public void setName(name){ this.name=name; } public String getPrice(){ return price; } public void setPrice(int price){ this.price=price; } }
然后在FirstActivity中也和簡單
Apple apple=new Apple(); apple.setName=("紅富士"); apple.setprice=(10); Intent intent=new Intent(FirstActivity.this,SecondActivity.class); intent.putExtra("Apple_data",apple); startActivity(intent);
而獲取這個對象也很簡單
Apple apple=(Apple) getIntent.getSerializableExtra(apple_data);
Parcelable也可以實(shí)現(xiàn)相同的效果,不過不同于將對象進(jìn)行序列化,Parcelable方法的實(shí)現(xiàn)原理是將一個完整的對象進(jìn)行分解,而分解后的每一部分都是Intent所支持的數(shù)據(jù)類型
public class Apple implements Parcelable{ private Stirng name; private int price; public String getName(){ return name; } public void setName(name){ this.name=name; } public String getPrice(){ return price; } public void setPrice(int price){ this.price=price; } @Override public int describeContents(){ return 0; } @Override public void writeToParcel(Parcel dest,int flags){ dest.writeString(name); dest.writeInt(price); } public static final Parcelable.CreatorCREATOR =new Parcelable.Creator (){ @Override public Apple creatFromParcel(Parcel source){ Apple apple=new Apple(); apple.name=source.readString(); apple.price=source.readInte(); return apple; } @Override public Apple[] newArray(int size){ return new Person[size]; } } }
在FirstActivity中的操作和Serializable一樣
接受為
Apple apple=(Apple) getIntent.getParcelableExtra(apple_data);
到此,關(guān)于“怎么使用Intent傳遞對象”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識,請繼續(xù)關(guān)注創(chuàng)新互聯(lián)-成都網(wǎng)站建設(shè)公司網(wǎng)站,小編會繼續(xù)努力為大家?guī)砀鄬?shí)用的文章!