I want to pass a huge object (e.g. Bitmap
) from one activity to another inside one process. If I put it into the Bundle
like Parcelable
, will Android really serialize the object or pass it by reference?
I want to pass a huge object (e.g. Bitmap
) from one activity to another inside one process. If I put it into the Bundle
like Parcelable
, will Android really serialize the object or pass it by reference?