Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question

4 Answers

up vote 62 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");
share|improve this answer
Thank you for your answer. – michael Mar 17 '10 at 3:51
11  
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
doesn't work on 2.3 – Alex Kucherenko Oct 30 '12 at 13:10
Doesn't work for me, but this one do : stackoverflow.com/questions/11010386/… – Houssem Feb 4 at 10:55

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?

share|improve this answer

@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.

share|improve this answer

you write

public static Bitmap bitmap;

in both class (class1 and class2, class2 is called by class1 thanks to

startActivity(new Intent("path to class2"));)

and you just modify the bitmap in class2 and then it's modified in class1? it doesn't work for me

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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