Android開發當中Parcelable介面的使用

來源:互聯網
上載者:User

對於Android來說傳遞複雜類型,主要是將自己的類轉換為基礎的位元組數組,Activity之間傳遞資料是通過Intent實現的。 Android序列化對象主要有兩種方法,實現Serializable介面、或者實現Parcelable介面。實現Serializable介面是Java
 SE本身就支援的,而Parcelable是Android特有的功能,效率比實現Serializable介面高,而且還可以用在處理序間通訊(IPC)中。實現Serializable介面非常簡單,聲明一下就可以了。而實現Parcelable介面稍微複雜一些,但效率更高,推薦用這種方法提高效能。
Parcelable介面的作用:實現了Parcelable介面的執行個體可以將自身的狀態資訊(狀態資訊通常指的是各成員變數的值)寫入Parcel,也可以從Parcel中恢複其狀態。
 Parcel用來完成資料的序列化傳遞。下面就介紹一下實現Parcelable介面的方法。
 通過實現Parcelable介面序列化對象的步驟:

1、實現Parcelable介面。
2、並且實現Parcelable介面的public
 void writeToParcel(Parcel dest, int flags)方法 。
3、自訂類型中必須含有一個名稱為CREATOR的靜態成員,該成員對象要求實現Parcelable.Creator介面及其方法。
簡而言之:通過writeToParcel將你的對象映射成Parcel對象,再通過createFromParcel將Parcel對象映射成你的對象。也可以將Parcel看成是一個流,通過writeToParcel把對象寫到流裡面,在通過createFromParcel從流裡讀取對象,只不過這個過程需要你來實現,因此寫的順序和讀的順序必須一致。
範例程式碼:
[java]
1. package com.yang.domain; 
2.  
3. import android.os.Parcel; 
4. import android.os.Parcelable; 
5.  
6. public class Person implements Parcelable { 
7.      //這裡定義了兩個變數來說明讀和寫的順序要一致    
8.     private Integer id; 
9.     private String name; 
10.  
11.     public Person() { 
12.     } 
13.  
14.     public Person(Integer id, String name) { 
15.          
16.         this.id = id; 
17.         this.name = name; 
18.     } 
19.  
20.     public Integer getId() { 
21.         return id; 
22.     } 
23.  
24.     public void setId(Integer id) { 
25.         this.id = id; 
26.     } 
27.  
28.     public String getName() { 
29.         return name; 
30.     } 
31.  
32.     public void setName(String name) { 
33.         this.name = name; 
34.     } 
35.  
36.     @Override 
37.     public int describeContents() { 
38.         return 0; 
39.     } 
40.  
41.     @Override 
42.     public void writeToParcel(Parcel dest, int flags) { 
43.         // 把javanbean中的資料寫到Parcel。先寫id然後寫name  
44.         dest.writeInt(this.id); 
45.         dest.writeString(this.name); 
46.     } 
47.  
48.     // 添加一個靜態成員,名為CREATOR,該對象實現了Parcelable.Creator介面  
49.     public static final Parcelable.Creator<Person> CREATOR = new Parcelable.Creator<Person>() { 
50.         @Override 
51.         public Person createFromParcel(Parcel source) { 
52.             // 從Parcel中讀取資料,返回person對象  
53.             return new Person(source.readInt(), source.readString()); 
54.         } 
55.  
56.         @Override 
57.         public Person[] newArray(int size) { 
58.             return new Person[size]; 
59.         } 
60.     }; 
61. } 
 
註:Parcelable介面在Android當中有非常之多的子類,如下:





 並且Intent當中也定義了很多關於Parcelable的get、set方法,如:
Intent putExtra(String name, Parcelable value)
Add extended data to the intent.
 
<T extends Parcelable> T getParcelableExtra(String name)
Retrieve extended data from the intent.
並且Intent本身也實現了Parcelable介面,因此在Android開發當中是非常推薦以Parcelable作為工具傳遞複製對象。
 




摘自 Snowball

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

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.