In my app I have a list. Once you click an item in that list a new view will be shown. In this view I will display a logo and run some music stream.
The logo is loaded as suggested by Google using the good way of loading an image resource. Actually the image is loaded by URL from my server. but to display I am using the suggested way.
My app is still crashing, actually not when the first time the image has been loaded, but when I go back to the list select an other item. after about 3-4 times switching to an other item the App finally crashes with the out of memory error!
I thought, once a view has been closed, the garbage collector will destroy the loaded image and will just load the new image... but I guess it remains in the memory and after a few loads, it will crash because of not enough memory...
Anyone some suggestions how to solve this? is it possible to clear the memory myself somehow?