friends,
i have read complete article related to avoiding memory leaks in android. http://developer.android.com/resources/articles/avoiding-memory-leaks.html
right now
1) i am using private nested class not static
if i make that nested class static will it be usefull?
2) article says If you're about to use Inner Classes or Anonymous Classes think carefully. Don't use Anonymous Classes until you're very sure and can prove that they are not causing a Memory Leak.
can any one give me example of that? which one is good approach and which one bad for memory leaks.
any help would be appreciated.