■ 数据传输 对象和字节流之间的转换 为什么要转? 持久化(装逼说法,JVM非运行的场合),他进程(装逼说法,其他机器JVM,不同的JVM) Parcelable和Serializable 初衷: Parcelable: Serializable效率过慢,为了在程序内不同组件间以及不同Android ...
分类:
移动开发 时间:
2016-07-12 15:07:28
阅读次数:
189
先说说Aidl传递参数类型 1.基本数据类型(除short类型) 2.String、charSequence 3.List,map 4.parcelable 第1步:定义一个*.aidl文件,eclipse会自动生成,android Studio需要编译一下(用Make project) 简单例子: ...
分类:
其他好文 时间:
2016-07-11 16:31:36
阅读次数:
291
1. Parcelable接口 Interface for classes whose instances can be written to and restored from a Parcel。 Classes implementing the Parcelable interface must ...
分类:
移动开发 时间:
2016-07-06 17:48:01
阅读次数:
213
首先,我们要知道Android序列化的方法有两种,一个是实现Serializable,这是JavaSE中就支持的接口,后来google推出了专门针对Android的接口Parcelable(其性能相对Serializable将近快了10倍) 然后我们要知道Android内部传递实例的基本方法:一是B ...
分类:
移动开发 时间:
2016-07-02 18:47:10
阅读次数:
243
import android.os.Parcel;import android.os.Parcelable; public class Person implements Parcelable{ private Integer id; private String name; private Str ...
分类:
移动开发 时间:
2016-06-21 19:07:44
阅读次数:
191
IPC的一些基本概念,Serializable接口,Parcelable接口,已经Binder。此核心为最后的IBookManager.java类!!! Serializable接口,Parcelable接口都是可以完成对象的序列化过程。 序列化 (Serialization)将对象的状态信息转换为 ...
分类:
移动开发 时间:
2016-06-09 21:03:51
阅读次数:
241
今天要给大家讲一下Android中 Intent中如何传递对象,就我目前所知道的有两种方法,一种是Bundle.putSerializable(Key,Object);另一种是 Bundle.putParcelable(Key, Object);当然这些Object是有一定的条件的,前者是实现了Se ...
分类:
移动开发 时间:
2016-06-05 13:51:25
阅读次数:
234
示例 aidl接口文件package com.bqt.aidlservice.aidl;parcelable Person; package com.bqt.aidlservice.aidl;parcelable Salary; package com.bqt.aidlservice.aidl;im... ...
分类:
系统相关 时间:
2016-05-29 21:27:41
阅读次数:
262
android studio插件 ignore,自动就写好了需要忽略那些文件,如果需要自定义,直接写进去就行了 GsonFormat,自动生成实体类 Android Parcelable Code Generator,Android中的序列化有两种方式,分别是实现Serializable接口和Par ...
分类:
其他好文 时间:
2016-05-29 18:24:50
阅读次数:
121
学习内容: 1.序列化的目的 2.Android中序列化的两种方式 3.Parcelable与Serializable的性能比较 4.Android中如何使用Parcelable进行序列化操作 5.Parcelable的工作原理 6.相关实例 1.序列化的目的 (1).永久的保存对象数据(将对象数据 ...
分类:
移动开发 时间:
2016-05-25 16:42:00
阅读次数:
403