【发布时间】:2015-06-26 08:50:39
【问题描述】:
我有一个具有以下结构的类:
class Example {
Integer age;
String name;
Collection<Example2>examples;
class Example2 {
Integer number;
Collection<String>strings;
}
}
我怎样才能让这个类实现 Parcelable 以便我可以跨活动发送它的对象。
【问题讨论】:
标签: android parcelable