Reputation: 110570
I see a ANR dialog in my android application. Can you please tell me if it is possible that my application uses up a lot of memory and GC takes over and uses a lot of time? Or it is something else?
Upvotes: 0
Views: 552
Reputation: 12455
You probably run many things on the UI thread which you should not do. Read this article carefully: Designing for Responsiveness
Upvotes: 4