While going through the android developer site i found this .
it says to avoid memory leak we should release resources in onStop()but how to do so.
While going through the android developer site i found this .
it says to avoid memory leak we should release resources in onStop()but how to do so.
There are a few notorious examples of memory hogs, with media (audio/video) and large bitmaps being the biggest memory hogs. Most things are taken care of by removing all pointers to them and letting GC have its way with them. Bitmaps, however, can be recycled more immediately by using:
Your media should be stopped and de-referenced. But it should be stopped in onPause(), and not left until onStop().
Basically any objects that are properly nulled are considered released and their memory can be reclaimed by the OS. Your question is too general and it's hard to offer a exhaustive list of methods, but you should generally be aware of these: