In my Application I have used lots of images on TableView Listing, So that I am getting java.lang.OutOfMemoryError: bitmap size exceeds VM budget also my application crashed in android emulator. Anyone help me to solve this issue

link|improve this question

71% accept rate
feedback

2 Answers

An idea would be to use smaller images. Make sure that you don't scale them down. Resize them instead.

link|improve this answer
I am already using small size images only (between 4kb to 6kb) in png format – joe Dec 26 '11 at 12:58
I'm not sure how they are stored when you load them into the memory. What's your images resolution and color deepth? – Udo Held Dec 26 '11 at 13:07
feedback

Here are a few suggestions for avoiding this error: 1. Use jpg images instead of png (jpgs are smaller in size) 2. Try to keep your runtime memory minimum by finishing the activities which are not being used. 3. Use DDMS to moniter your runtime memory usage

link|improve this answer
hi, i am using around 25 images in one page, Image size are between 4kb to 6kb.How do I keep keep my runtime memory minimum? – joe Dec 26 '11 at 12:56
feedback

Your Answer

 
or
required, but never shown

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