返回顶部
首页 > 资讯 > 移动开发 >Android开发之Parcel机制实例分析
  • 443
分享到

Android开发之Parcel机制实例分析

android开发Android 2022-06-06 09:06:59 443人浏览 八月长安
摘要

本文实例讲述了Android开发之Parcel机制。分享给大家供大家参考。具体分析如下: 在java中,有序列化机制。但是在安卓设备上,由于内存有限,所以设计了新的序列化机制。

本文实例讲述了Android开发之Parcel机制。分享给大家供大家参考。具体分析如下:

在java中,有序列化机制。但是在安卓设备上,由于内存有限,所以设计了新的序列化机制。

Container for a message (data and object references) that can be sent through an IBinder.  A Parcel can contain both flattened data that will be unflattened on the other side of the IPC (using the various methods here for writing specific types, or the generalParcelable interface), and references to liveIBinder objects that will result in the other side receiving a proxy IBinder connected with the original IBinder in the Parcel.

Parcel is not a general-purpose serialization mechanism.  This class (and the correspondingParcelable api for placing arbitrary objects into a Parcel) is designed as a high-perfORMance IPC transport.  As such, it is not appropriate to place any Parcel data in to persistent storage: changes in the underlying implementation of any of the data in the Parcel can render older data unreadable.

从上面的官方解释可以看到,Parcel主要就是用来序列化,在一端编码,在另外一端进行解码。

本质上把它当成一个Serialize就可以了,只是它是在内存中完成的序列化和反序列化,利用的是连续的内存空间,因此会更加高效。

我们接下来要说的是Parcel类如何应用。就应用程序而言,最常见使用Parcel类的场景就是在Activity间传递数据。没错,在Activity间使用Intent传递数据的时候,可以通过Parcelable机制传递复杂的对象。

具体例子可以参见这里,写的很好。

在实现Parcelable接口的时候,必须实现其中的两个方法并且定义一个CREATOR:


@Override 
public int describeContents() {
    return 0; 
} 
@Override 
public void writeToParcel(Parcel dest, int flags) {
    dest.writeInt(color); 
}

其中,writeToParcel方法定义了怎么向序列化中写入该类对象的信息。

CREATOR对象中定义了两个函数:


public MyColor createFromParcel(Parcel in) {
  return new MyColor(in);
}
public MyColor[] newArray(int size) {
  return new MyColor[size];
}

其中,createFromParcel方法告诉平台如何从已经序列化的对象中构建该类的实例。newArray方法的作用不明。实现于Parcelable接口的CREATOR成员的createFromParcel方法用于告诉平台如何从包裹里创建该类的实例,而writeToParcel方法则用于告诉平台如何将该类的实例存储到包裹中。通过这种约定,平台就知道怎么序列化和反序列化了。

希望本文所述对大家的Android程序设计有所帮助。

您可能感兴趣的文章:Android中Serializable和Parcelable序列化对象详解Android中Intent传递对象的两种方法Serializable,ParcelableAndroid中使用Intent在Activity之间传递对象(使用Serializable或者Parcelable)的方法Android中的Parcelable序列化对象Android中Parcelable的作用实例解析Android中Parcel用法详解


--结束END--

本文标题: Android开发之Parcel机制实例分析

本文链接: https://lsjlt.com/news/26711.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作