I am wondering if its possible to free resources when leaving an activity in android?
My app has several activities and one of them is very memory-consuming as it holds al lot of high quality images. If one goes to this activity heap soars and its not very far from tangent out-of-memory-exeption. Let say it occypies 85% of the limit. But - this is one of several activities and the only one that is memory-consuming. The others are not - its only listviews which hold some text.
I am not saying that I have a memory leak but to be on the secure side I would like to free resources when leaving this activity that holds the images. I cannot figure out how to do that?
thanks!!!