michael
michael

Reputation: 110570

ANR dialog in my android application

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

Answers (1)

mreichelt
mreichelt

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

Related Questions