listview gets out of memory exception, but with no memory leaks?
After Honeycomb, Google said that bitmaps are managed by the heap (talked about here ), so if a bitmap is no longer accessible, we can assume that GC takes care of it and frees it. I wanted to create a demo that shows the efficiency of the ideas shown for the listView lecture (from here ), so I made a small app. The app lets the user press a button, and then the listview scrolls all the way to the bottom, while it has 10000 items, which their content is the android.R.drawable items (name and image). For some reason, I get out of memory even though I don't save any of the images, so my question