android - Serialize arraylist of Bitmaps -


i have citem class:

public class citem {     public bitmap bmp;     public string desc; } 

in class have array defined follows:

arraylist<citem> array; 

i need store array in table in database , had thought of serializing array. have 2 options:

1) single record serialized array.

2) n-records serializing citem objects.

serializing bitmap not problem not how serialize array. best option? , how can do?

thank in advance.

you can not serialize citem object since bitmap not implements serializable. can encode bitmap base64 , serialize base64 strings


Comments

Popular posts from this blog

.htaccess - First slash is removed after domain when entering a webpage in the browser -

Automatically create pages in phpfox -

c# - Farseer ContactListener is not working -