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
|
|
|||
|
|
|
titanium doest not recommend using table view for listing when you are building for android. instead use scrollview. by using table view you may also get into textfield focus-lost problem and also titanium has known tableView scroll performance issue https://jira.appcelerator.org/browse/TIMOB-1821 a better approach is to use low resolution images in scrollview and use proper javascript structure and break your code into small functions. try to remove unnecessary event handlers i.e image "load" event |
||||
|
|
|
An idea would be to use smaller images. Make sure that you don't scale them down. Resize them instead. |
|||
|
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 |
|||
|