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)?

link|improve this question

75% accept rate
feedback

3 Answers

up vote 29 down vote accepted

Bitmap implements Parcelable, so you could always pass it in the intent:

Intent intent = new Intent(this, NewActivity.class);
intent.putExtra("BitmapImage", bitmap);

and retrieve it on the other end:

Bitmap bitmap = (Bitmap) intent.getParcelableExtra("BitmapImage");
link|improve this answer
Thank you for your answer. – michael Mar 17 '10 at 3:51
6  
If the bitmap exists as a file or a resource, its is always better to pass the URI or ResourceID of the bitmap and not the bitmap itself. Passing the entire bitmap requires a lot of memory. Passing the URL requires very little memory and allows each activity to load and scale the bitmap as they need it. – slayton Oct 26 '11 at 14:13
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?

link|improve this answer
feedback

@Erich Douglass is right Sample code to pass bitmap in intent

 Intent intent = new Intent(GalleryActivity.this,FullScreenActivity.class);
                Drawable drawable   = imageView.getDrawable();
                Bitmap bitmap = ((BitmapDrawable)drawable).getBitmap();
                intent.putExtra(INTENT_IMG, bitmap);
                startActivity(intent);

Thank you.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.