i currently have a class that uses bitmap. however it is not serializable due to bitmap. Right now i am wondering which are the best ways to deal with it.
Should i be storing it on the cache or sdcard? How ong does bitmap saved in cache or sdcard stays? is there any tutorial for doing those
You can pass bitmap object from one activity to another.Take a look at the following:
BitmapimplementsParcelable, so you could always pass it in the intent:and retrieve it on the other end: