Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
Android: Strange out of memory issue while loading an image to a Bitmap object

I am getting following error when I load bitmap on imageview in AsyncTask:

Caused by: java.lang.OutOfMemoryError: bitmap size exceeds VM budget

Is there any help?

share|improve this question
1  
My guess is that you need more physical memory, a larger allocation for your JVM, or a smaller image. – duffymo Jul 15 '11 at 9:31
2  
@nirav: Please look at the "Related" links (on the right of this page) – Mat Jul 15 '11 at 9:34

marked as duplicate by jprofitt, Nunu, brian d foy, Aren, Daniel Fischer Dec 27 '12 at 20:29

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

It could be helpful to watch the memory management session of this year's google i/o: Memory management for Android Apps Here, Patrick Dubroy explains some cases which can lead to memory leaks (particularly keeping a long lived reference to the application's context via static members). He also talks about the garbage collector.

share|improve this answer

I had the same problem. I solved the problem resampling the bitmap to lower resolution, and then using imageView.clearAnimation(); before to load the new bitmap on the imageView. Vote me if this helps you too. Regards. Note: in the following sample, data contains the new image data for the camera image picker and imageView is our ImageView.

    Bitmap photo=null;
    imageView.clearAnimation();     
    Uri photoUri =  data.getData(); 
    InputStream imageStream = null;
    try {
    imageStream = getContentResolver().openInputStream(photoUri);
    } catch (FileNotFoundException e) {
    e.printStackTrace();
    }

    BitmapFactory.Options options = new BitmapFactory.Options();
    options.inPurgeable = true;
    options.inSampleSize=2;
    Rect outPadding= new Rect(-1, -1, -1, -1);
    photo = BitmapFactory.decodeStream(imageStream, outPadding, options);
    imageView.setImageBitmap(photo);
share|improve this answer

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