Re: [android-developers] Memory managing my list adapter

2011-04-06 Thread Kostya Vasilyev
06.04.2011 12:54, Neilz пишет: 1) As I scroll up and down the list, I notice that getView() gets called each time the item appears. Thus, it creates another ImageView which gets assigned another bitmap. Is there not a way to have this only called the once, so that the next time the list row is ca

[android-developers] Memory managing my list adapter

2011-04-06 Thread Neilz
Hi all. I have a list adapter, code given below. I'm trying to clean up the app, recycle bitmaps etc, to lower the memory usage as I've been experiencing out of memory issues when creating bitmaps. I'm concerned that my list adapter is not as efficient as it could be, and just wanted some advice.