1. Parcelable接口Interface for classes whose instances can be written to and restored from a Parcel。 Classes implementing the Parcelable interface must ...
分类:
移动开发 时间:
2014-12-17 10:39:35
阅读次数:
194
Android中Intent传递类对象提供了两种方式一种是 通过实现Serializable接口传递对象,一种是通过实现Parcelable接口传递对象。
要求被传递的对象必须实现上述2种接口中的一种才能通过Intent直接传递。
Intent中传递这2种对象的方法:
Bundle.putSerializable(Key,Object); //实现Serializable接口的对象
...
分类:
移动开发 时间:
2014-12-13 09:37:57
阅读次数:
173
Serializable和Parcelable比较 Serializable的作用是为了保存对象的属性到本地文件、数据库、网络流、rmi以方便数据传输,当然这种传输可以是程序内的也可以是两个程序间的。而Android的Parcelable的设计初衷是因为Serializable效率过慢,为了在程序内...
分类:
其他好文 时间:
2014-12-12 11:23:48
阅读次数:
162
什么是Parcelable ?
Parcelable,定义了将数据写入Parcel,和从Parcel中读出的接口。一个实体(用类来表示),如果需要封装到消息中去,就必须实现这一接口,实现了这一接口,该实体就成为“可打包的”了。
Parcelable 传递对象
Android序列化对象主要有两种方法:
1.实现Serializable接口,实...
分类:
移动开发 时间:
2014-12-11 10:30:07
阅读次数:
183
android Parcelable完全解析...
分类:
移动开发 时间:
2014-12-05 14:22:30
阅读次数:
199
Parcelable数据 public?class?HotelRoom?implements?Parcelable?{
public?HotelRoom?()
{
this.adultOrderNumber?=?1;
this.roomNumber?=?1;
this.kidOrderNumber?=?0;
}
/**?成年人订...
分类:
移动开发 时间:
2014-12-03 12:40:30
阅读次数:
169
1. Parcelable接口Interface for classes whose instances can be written to and restored from a Parcel。 Classes implementing the Parcelable interface must ...
分类:
移动开发 时间:
2014-11-28 16:13:54
阅读次数:
299
Activity之间通过Intent传递值,支持基本数据类型和String对象及它们的数组对象byte、byte[]、char、char[]、boolean、boolean[]、short、short[]、int、int[]、long、long[]、float、float[]、double、double[]、String、String[],还有实现Serializable、Parcelable接口...
分类:
移动开发 时间:
2014-10-20 17:21:43
阅读次数:
264
转自:http://www.blogjava.net/lincode/archive/2011/09/16/358805.htmlandroid 中自定义的对象序列化的问题有两个选择一个是Parcelable,另外一个是Serializable。一 序列化原因:1.永久性保存对象,保存对象的字节序列...
分类:
移动开发 时间:
2014-10-08 16:51:35
阅读次数:
200
上一篇讲了activity的创建和启动,这一篇,我们来讲讲activity的数据传递activity之间的数据传递,这里主要介绍的是activity之间简单数据的传递,直接用bundle传递基本数据类型的数据。另一种数据类型是parcelable和serialable用bundle 传递数据有两种情...
分类:
移动开发 时间:
2014-10-05 17:44:18
阅读次数:
311