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
| |||
|
feedback
|
|
An idea would be to use smaller images. Make sure that you don't scale them down. Resize them instead. | |||||
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 | |||
feedback
|