Re: [android-developers] How to serialize a Class that includes a Bitmap?

2012-03-30 Thread Dianne Hackborn
Serializing for persistent storage is generally a bad idea, since later
changes to your classes can cause them to incompatible with what you had
previously serialized.  I really think that if you are persisting data, you
should explicitly define your format up-front so you are in control of
versioning and compatibility of it separately from your implementation.

On Thu, Mar 29, 2012 at 5:32 AM, saex elpablos...@gmail.com wrote:

 Hi

 I have a simple class that implements Serializable, because i'm
 serializating the class storing it on the sdcard into a file.

 The class haves a Bitmap inside, and the bitmap is not bening
 Serialized because when i recover the class from the sdcard binary file
 the bitmap is NULL

 How can solve this? i can't find info on google.

 Thanks

 --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en




-- 
Dianne Hackborn
Android framework engineer
hack...@android.com

Note: please don't send private questions to me, as I don't have time to
provide private support, and so won't reply to such e-mails.  All such
questions should be posted on public forums, where I and others can see and
answer them.

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] How to serialize a Class that includes a Bitmap?

2012-03-29 Thread saex
Hi

I have a simple class that implements Serializable, because i'm 
serializating the class storing it on the sdcard into a file.

The class haves a Bitmap inside, and the bitmap is not bening 
Serialized because when i recover the class from the sdcard binary file 
the bitmap is NULL

How can solve this? i can't find info on google.

Thanks

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en