`

Android的Parcel机制

 
阅读更多
转载至:http://blog.csdn.net/caowenbin/article/details/6532238

上一篇中我们透过源码看到了Parcel背后的机制,本质上把它当成一个Serialize就可以了,只是它是在内存中完成的序列化和反序列化,利用的是连续的内存空间,因此会更加高效。
         我们接下来要说的是Parcel类如何应用。就应用程序而言,最常见使用Parcel类的场景就是在Activity间传递数据。没错,在Activity间使用Intent传递数据的时候,可以通过Parcelable机制传递复杂的对象。
         在下面的程序中,MyColor用于保存一个颜色值,MainActivity在用户点击屏幕时将MyColor对象设成红色,传递到SubActivity中,此时SubActivity的TextView显示为红色的背景;当点击SubActivity时,将颜色值改为绿色,返回MainActivity,期望的是MainActivity的TextView显示绿色背景。
         来看一下MyColor类的实现代码:
       
view plain
package com.wenbin.test; 
 
import android.graphics.Color; 
import android.os.Parcel; 
import android.os.Parcelable; 
 
/**
* @author 曹文斌
* http://blog.csdn.net/caowenbin
*
*/ 
public class MyColor implements Parcelable { 
    private int color=Color.BLACK; 
     
    MyColor(){ 
        color=Color.BLACK; 
    } 
     
    MyColor(Parcel in){ 
        color=in.readInt(); 
    } 
     
    public int getColor(){ 
        return color; 
    } 
     
    public void setColor(int color){ 
        this.color=color; 
    } 
     
    @Override 
    public int describeContents() { 
        return 0; 
    } 
 
    @Override 
    public void writeToParcel(Parcel dest, int flags) { 
        dest.writeInt(color); 
    } 
 
    public static final Parcelable.Creator<MyColor> CREATOR 
        = new Parcelable.Creator<MyColor>() { 
        public MyColor createFromParcel(Parcel in) { 
            return new MyColor(in); 
        } 
         
        public MyColor[] newArray(int size) { 
            return new MyColor[size]; 
        } 
    }; 



         该类实现了Parcelable接口,提供了默认的构造函数,同时也提供了可从Parcel对象开始的构造函数,另外还实现了一个static的构造器用于构造对象和数组。代码很简单,不一一解释了。
         再看MainActivity的代码:

view plain
package com.wenbin.test; 
 
import android.app.Activity; 
import android.content.Intent; 
import android.graphics.Color; 
import android.os.Bundle; 
import android.view.MotionEvent; 
 
/**
* @author 曹文斌
* http://blog.csdn.net/caowenbin
*
*/ 
public class MainActivity extends Activity { 
    private final int SUB_ACTIVITY=0; 
    private MyColor color=new MyColor(); 
     
    @Override 
    public void onCreate(Bundle savedInstanceState) { 
        super.onCreate(savedInstanceState); 
        setContentView(R.layout.main); 
    } 
 
    @Override 
    protected void onActivityResult(int requestCode, int resultCode, Intent data) { 
        super.onActivityResult(requestCode, resultCode, data); 
        if (requestCode==SUB_ACTIVITY){ 
            if (resultCode==RESULT_OK){ 
                if (data.hasExtra("MyColor")){ 
                    color=data.getParcelableExtra("MyColor");  //Notice 
                    findViewById(R.id.text).setBackgroundColor(color.getColor()); 
                } 
            } 
        } 
    } 
 
    @Override 
    public boolean onTouchEvent(MotionEvent event){ 
        if (event.getAction()==MotionEvent.ACTION_UP){ 
            Intent intent=new Intent(); 
            intent.setClass(this, SubActivity.class); 
            color.setColor(Color.RED); 
            intent.putExtra("MyColor", color); 
            startActivityForResult(intent,SUB_ACTIVITY);     
        } 
        return super.onTouchEvent(event); 
    } 
 



        下面是SubActivity的代码:

view plain
package com.wenbin.test; 
 
import android.app.Activity; 
import android.content.Intent; 
import android.graphics.Color; 
import android.os.Bundle; 
import android.view.MotionEvent; 
import android.widget.TextView; 
 
/**
* @author 曹文斌
* http://blog.csdn.net/caowenbin
*
*/ 
public class SubActivity extends Activity { 
    private MyColor color; 
     
    @Override 
    public void onCreate(Bundle savedInstanceState) { 
        super.onCreate(savedInstanceState); 
        setContentView(R.layout.main); 
        ((TextView)findViewById(R.id.text)).setText("SubActivity"); 
        Intent intent=getIntent(); 
        if (intent!=null){ 
            if (intent.hasExtra("MyColor")){ 
                color=intent.getParcelableExtra("MyColor"); 
                findViewById(R.id.text).setBackgroundColor(color.getColor()); 
            } 
        } 
    } 
     
    @Override 
    public boolean onTouchEvent(MotionEvent event){ 
        if (event.getAction()==MotionEvent.ACTION_UP){ 
            Intent intent=new Intent(); 
            if (color!=null){ 
                color.setColor(Color.GREEN); 
                intent.putExtra("MyColor", color); 
            } 
            setResult(RESULT_OK,intent); 
            finish(); 
        } 
        return super.onTouchEvent(event); 
    } 



        下面是main.xml的代码:

view plain
<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:orientation="vertical" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    > 
<TextView   
    android:layout_width="fill_parent"  
    android:layout_height="wrap_content"  
    android:text="@string/hello" 
    android:id="@+id/text" 
    /> 
</LinearLayout> 


        注意的是在MainActivity的onActivityResult()中,有一句color=data.getParcelableExtra("MyColor"),这说明的是反序列化后是一个新的MyColor对象,因此要想使用这个对象,我们做了这个赋值语句。
         记得在上一篇《探索Android中的Parcel机制(上)》中提到,如果数据本身是IBinder类型,那么反序列化的结果就是原对象,而不是新建的对象,很显然,如果是这样的话,在反序列化后在MainActivity中就不再需要color=data.getParcelableExtra("MyColor")这句了。因此,换一种MyColor的实现方法,令其中的int color成员变量使用IBinder类型的成员变量来表示。
         新建一个BinderData类继承自Binder,代码如下:

view plain
package com.wenbin.test; 
 
import android.os.Binder; 
 
/**
* @author 曹文斌
* http://blog.csdn.net/caowenbin
*
*/ 
public class BinderData extends Binder { 
    public int color; 


 
       修改MyColor的代码如下:

view plain
package com.wenbin.test; 
 
import android.graphics.Color; 
import android.os.Parcel; 
import android.os.Parcelable; 
 
/**
* @author 曹文斌
* http://blog.csdn.net/caowenbin
*
*/ 
public class MyColor implements Parcelable { 
    private BinderData data=new BinderData(); 
     
    MyColor(){ 
        data.color=Color.BLACK; 
    } 
     
    MyColor(Parcel in){ 
        data=(BinderData) in.readValue(BinderData.class.getClassLoader()); 
    } 
     
    public int getColor(){ 
        return data.color; 
    } 
     
    public void setColor(int color){ 
        data.color=color; 
    } 
     
    @Override 
    public int describeContents() { 
        return 0; 
    } 
 
    @Override 
    public void writeToParcel(Parcel dest, int flags) { 
        dest.writeValue(data); 
    } 
 
    public static final Parcelable.Creator<MyColor> CREATOR 
        = new Parcelable.Creator<MyColor>() { 
        public MyColor createFromParcel(Parcel in) { 
            return new MyColor(in); 
        } 
         
        public MyColor[] newArray(int size) { 
            return new MyColor[size]; 
        } 
    }; 


         去掉MainActivity的onActivityResult()中的color=data.getParcelableExtra("MyColor")一句,变成:

view plain
@Override 
protected void onActivityResult(int requestCode, int resultCode, Intent data) { 
    super.onActivityResult(requestCode, resultCode, data); 
    if (requestCode==SUB_ACTIVITY){ 
        if (resultCode==RESULT_OK){ 
            if (data.hasExtra("MyColor")){ 
                findViewById(R.id.text).setBackgroundColor(color.getColor()); 
            } 
        } 
    } 


         再次运行程序,结果符合预期。

         以上就是Parcel在应用程序中的使用方法,与Serialize还是挺相似的,详细的资料当然还是要参考Android SDK的开发文档了。
分享到:
评论

相关推荐

    探索Android中的Parcel机制.doc编程资料

    探索Android中的Parcel机制.doc

    Android开发之Parcel机制实例分析

    在Android开发中,Parcel机制是一种专为高效IPC(Inter-Process Communication,进程间通信)设计的序列化和反序列化机制。与Java中的常规序列化不同,Parcel并不适用于持久化存储,而是专注于在进程间快速传递数据...

    Android中Parcel用法详解

    Parcel的存储机制是基于内存偏移量的。每个写入的数据项都会按照32位的基本单位进行对齐,这意味着即使某个数据实际占用的字节数少于32位,也会占据32位的空间。例如,一个float类型(占用32位)写入后,下一个数据...

    Android Binder机制

    Android Binder机制是Android系统的核心组件之一,它负责进程间通信(IPC,Inter-Process Communication),使得不同应用程序或者同一系统中的不同组件能够有效地交互。在Android系统中,由于每个应用程序运行在自己...

    AndroidBinder机制总结[归纳].pdf

    在Android系统中,Binder机制是实现进程间通信(IPC)的核心工具,尤其在跨应用程序组件交互时至关重要。本文将深入探讨Android Binder机制及其在组件化思想中的应用。 1. Android组件化思想 Android应用的组件化...

    Android Binder 机制学习总结

    Android Binder是Android系统中核心的进程间通信(IPC,Inter-Process Communication)机制,它使得运行在不同进程中的组件能够高效、安全地交互。Binder机制是Android系统服务、应用程序组件以及其他系统组件之间...

    native直接使用Parcel通信

    在Android系统中,IPC(Inter-Process Communication)是不同进程之间通信的重要手段,而Parcel则是Android IPC机制中用于数据序列化和反序列化的关键类。本项目中的"native直接使用Parcel通信"指的是在C/C++层(即...

    parcel使用的demo

    Parcel是Android系统中一个用于...掌握Parcel的使用,能够帮助开发者更好地理解和利用Android的IPC机制,提升应用的性能和用户体验。通过深入研究"ObjectTranDemo",你可以进一步巩固这些概念并将其应用到实际项目中。

    Android IPC机制之 - AIDL-TestAIDL

    在Android系统中,IPC(Inter-Process Communication)是不同进程间通信的一种机制,它使得运行在不同进程中的组件能够相互协作。AIDL(Android Interface Definition Language)是Android平台提供的一种强大的工具...

    Android深入浅出之Binder机制.pdf

    在Android系统中,Binder是实现进程间通信(IPC,Inter-Process Communication)的核心组件,它是一种轻量级的进程间通信机制,使得不同进程间的对象能够安全、高效地交互。理解Binder机制对于深入掌握Android系统...

    Android平台——Binder机制

    ### Android平台——Binder机制 #### 一、Binder机制概述 Binder机制是Android系统中用于实现跨进程通信(IPC)的核心技术之一。通过Binder机制,不同的应用程序和服务能够在不同的进程中相互通信,共享数据或请求...

    xamarin学习笔记A17(安卓Parcel和IParcelable)

    Parcel是Android系统提供的一种轻量级的数据存储和传输机制。它主要用于将对象转换为可以存储或通过Binder机制跨进程传输的数据格式。在Xamarin.Android中,我们同样可以利用这个特性来处理复杂的对象传递。 首先,...

    android native层 binder通信机制演示源码

    在Android系统中,Binder是实现进程间通信(IPC,Inter-Process Communication)的主要机制,尤其在涉及服务(Service)和应用程序组件之间的交互时。在Android的Native层进行Binder通信,可以提升性能并降低内存...

    Android应用源码之(遍历Body).zip

    此外,如果需要将解析后的数据传递给其他组件,Android的Parcel机制能高效地序列化和反序列化对象,尤其适用于Intent传递或持久化存储。 4. 异步处理与线程管理: 由于网络操作可能耗时,Android推荐在主线程之外...

    android的binder机制研究(C++部分).pdf

    ### Android的Binder机制研究(C++部分) #### 概述 Android系统中,Binder机制是一种核心的进程间通信(IPC)方式,它允许一个进程通过类似远程过程调用(RPC)的方式调用另一个进程中的方法。Binder机制不仅支持...

    Android进程间通信 源码

    Android提供了Parcel类,可以方便地将对象序列化为 Parcel 数据,然后通过Binder传递。在接收端,再将Parcel数据反序列化回对象。 标签中提到的`service`是指Android中的Service组件,它用于执行长时间运行的操作而...

Global site tag (gtag.js) - Google Analytics