On 29 November 2011 09:41, 杨辉 <[email protected]> wrote: > Hi: > I try to copy an object in android with the method of Serializable,but > failed.
Your object that you are trying to 'copy' needs to implement interface Serializeable. It is a place-holder interface marking given class as serialiseable. Have a read here [*], then go to find some examples and see, whether it is achievable, what you are trying to achieve. [*} http://docs.oracle.com/javase/1.5.0/docs/api/java/io/Serializable.html -- Daniel Drozdzewski -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

