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)?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
||||
|
|
|
and retrieve it on the other end:
|
|||||||||||
|
|
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? |
|||
|
|
|
@Erich Douglass is right Sample code to pass bitmap in intent
Thank you. |
|||
|
|
|
you write
in both class (class1 and class2, class2 is called by class1 thanks to
and you just modify the bitmap in class2 and then it's modified in class1? it doesn't work for me |
|||
|
|