In my activity, I create a Bitmap object and then I need to launch another Activity,
How can I pass this Bitmap object from the sub-activity (the one which is going to be launched)?
| ||||
|
feedback
|
|
and retrieve it on the other end:
| |||||||
feedback
|
|
Actually, passing a bitmap as Parcelable will result in a JAVA BINDER FAILURE error. Try passing the bitmap as a byteArray and build it for display in the next activity. I shared my solution here: how do you pass images (bitmaps) between android activities using bundles? | |||
|
feedback
|
|
@Erich Douglass is right Sample code to pass bitmap in intent
Thank you. | |||
|
feedback
|