tags:

views:

26

answers:

1

Hi,

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?

+3  A: 

You probably run many things on the UI thread which you should not do. Read this article carefully: Designing for Responsiveness

mreichelt