I have an activity which uses considerable amount of memory in my app. So whenever the user switches over from that activity to some other activity, I am trying to call finish() to stop that activity.
My question is, will calling finish() from that activity free up memory space or just finishes that activity without cleaning the memory used by that particular activity?
Any help is much appreciated..