[android-developers] Re: OutOfMemoryError when scrolling ListView

2009-02-03 Thread Matt Hall
I'm struggling with the same problem, but aren't able to fix things like the previous poster. When I switched to reusing views as previously suggested I seem to have delayed the crash, but it still happens. I am drawing a custom bitmap as part of my list items and have tried to keep their

[android-developers] Re: OutOfMemoryError when scrolling ListView

2009-02-03 Thread Romain Guy
Then your app just uses way too much memory and the ListView drawing cache happens to make you go over the limit. You can also disable ListView's scrolling cache but it will just postpone your memory issues a little bit, not fix them. On Tue, Feb 3, 2009 at 5:27 PM, Matt Hall matt.h...@gmail.com

[android-developers] Re: OutOfMemoryError when scrolling ListView

2009-01-29 Thread muckwarrior
Never mind, I've managed to solve the problem myself with a hint from the other similar thread that I didn't see before posting. For anyone that encounters the same problem, I fixed it by using convertView as explained here http://androidguys.com/?p=635 On Jan 29, 2:23 pm, muckwarrior