- 浏览: 59269 次
- 性别:
- 来自: 成都
文章分类
最新评论
转载至: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的开发文档了。
上一篇中我们透过源码看到了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的开发文档了。
发表评论
-
TextView 的属性
2013-04-17 17:45 593收集到了TextView 的属性 ... -
ADT在线安装
2012-11-09 09:53 807注:转载自http://blog.csdn.net/kieve ... -
android 界面布局 很好的一篇总结 【转】
2012-04-26 15:24 959出处:http://www.cnblogs.com/awe ... -
android xml属性大全
2012-03-15 09:12 1053Android activity属性 android:all ... -
Android开发之屏幕大小自适应
2012-01-31 14:19 889屏幕大小: 一:不同的layout Android手机屏幕大小 ... -
Intent常用Uri
2012-01-21 09:37 835一、打开一个网页,类别是Intent.ACTION_VIEW ... -
android raw读取超过1M文件的方法
2011-11-01 15:48 858转载自:http://www.cnblogs.com/yaos ... -
Android Bitmap用法总结
2011-10-09 10:57 993转载自:http://blog.csdn.net/zhou69 ... -
Android之TextView------属性大全
2011-09-22 16:32 728android:autoLink设置是否当 ... -
Android内存泄漏简介
2011-09-09 16:28 837前言 不少人认为JAV ... -
Android Context
2011-09-01 17:12 955在android中context可以作很多操作,但是最主要的功 ... -
android面试题
2011-06-27 11:57 10161.什么是Activity? 2.请描 ... -
android中的hdpi,ldpi,mdpi
2011-06-17 14:31 691Android2.1 和之后的版本 中的 drawable(h ... -
Android横竖屏
2011-06-08 11:22 881要解决的问题应该就两个: 一。布局问题; 二。重新载入问题。 ... -
访问android平台的通话记录CallLog
2011-06-01 15:31 1161转载自:http://android.tgbus.com/An ... -
Android软件权限知识普及
2011-05-27 11:08 888APK权限详细对照表 您的 ... -
Android调用WebService
2011-05-18 13:42 1101转载至:http://express.ruanko.com/r ... -
android实用代码片段
2011-05-06 10:58 7621. android获取到系统是24小时制还是12小时制 ... -
Android 应用程序退出的四种方法
2011-05-04 09:33 1510Android程序有很多Activi ... -
开发者不得不知的Android权限说明
2011-04-21 10:55 715程序执行需要读取到安全敏感项必需在androidmanifes ...
相关推荐
探索Android中的Parcel机制.doc
在Android开发中,Parcel机制是一种专为高效IPC(Inter-Process Communication,进程间通信)设计的序列化和反序列化机制。与Java中的常规序列化不同,Parcel并不适用于持久化存储,而是专注于在进程间快速传递数据...
Parcel的存储机制是基于内存偏移量的。每个写入的数据项都会按照32位的基本单位进行对齐,这意味着即使某个数据实际占用的字节数少于32位,也会占据32位的空间。例如,一个float类型(占用32位)写入后,下一个数据...
Android Binder机制是Android系统的核心组件之一,它负责进程间通信(IPC,Inter-Process Communication),使得不同应用程序或者同一系统中的不同组件能够有效地交互。在Android系统中,由于每个应用程序运行在自己...
在Android系统中,Binder机制是实现进程间通信(IPC)的核心工具,尤其在跨应用程序组件交互时至关重要。本文将深入探讨Android Binder机制及其在组件化思想中的应用。 1. Android组件化思想 Android应用的组件化...
Android Binder是Android系统中核心的进程间通信(IPC,Inter-Process Communication)机制,它使得运行在不同进程中的组件能够高效、安全地交互。Binder机制是Android系统服务、应用程序组件以及其他系统组件之间...
在Android系统中,IPC(Inter-Process Communication)是不同进程之间通信的重要手段,而Parcel则是Android IPC机制中用于数据序列化和反序列化的关键类。本项目中的"native直接使用Parcel通信"指的是在C/C++层(即...
Parcel是Android系统中一个用于...掌握Parcel的使用,能够帮助开发者更好地理解和利用Android的IPC机制,提升应用的性能和用户体验。通过深入研究"ObjectTranDemo",你可以进一步巩固这些概念并将其应用到实际项目中。
在Android系统中,IPC(Inter-Process Communication)是不同进程间通信的一种机制,它使得运行在不同进程中的组件能够相互协作。AIDL(Android Interface Definition Language)是Android平台提供的一种强大的工具...
在Android系统中,Binder是实现进程间通信(IPC,Inter-Process Communication)的核心组件,它是一种轻量级的进程间通信机制,使得不同进程间的对象能够安全、高效地交互。理解Binder机制对于深入掌握Android系统...
### Android平台——Binder机制 #### 一、Binder机制概述 Binder机制是Android系统中用于实现跨进程通信(IPC)的核心技术之一。通过Binder机制,不同的应用程序和服务能够在不同的进程中相互通信,共享数据或请求...
Parcel是Android系统提供的一种轻量级的数据存储和传输机制。它主要用于将对象转换为可以存储或通过Binder机制跨进程传输的数据格式。在Xamarin.Android中,我们同样可以利用这个特性来处理复杂的对象传递。 首先,...
在Android系统中,Binder是实现进程间通信(IPC,Inter-Process Communication)的主要机制,尤其在涉及服务(Service)和应用程序组件之间的交互时。在Android的Native层进行Binder通信,可以提升性能并降低内存...
此外,如果需要将解析后的数据传递给其他组件,Android的Parcel机制能高效地序列化和反序列化对象,尤其适用于Intent传递或持久化存储。 4. 异步处理与线程管理: 由于网络操作可能耗时,Android推荐在主线程之外...
### Android的Binder机制研究(C++部分) #### 概述 Android系统中,Binder机制是一种核心的进程间通信(IPC)方式,它允许一个进程通过类似远程过程调用(RPC)的方式调用另一个进程中的方法。Binder机制不仅支持...
Android提供了Parcel类,可以方便地将对象序列化为 Parcel 数据,然后通过Binder传递。在接收端,再将Parcel数据反序列化回对象。 标签中提到的`service`是指Android中的Service组件,它用于执行长时间运行的操作而...