1

I have an app with a widget that loads an activity to perform an action. It works great almost always, but every so often it will be unresponsive and I will have to start the app again to get it to start working again. Does anyone have an idea as to why this is happening?

John
  • 1,889
  • 6
  • 19
  • 26
  • Using `Log.d(TAG, msg)` is a good way to track what your app is doing, so that you can know where it's crashing. The root of the problem should be something specific of your app, so it's not easy to give you a reason of why it crashes. – Cristian May 04 '10 at 14:16

1 Answers1

0

If you get an "Application Not Responding" (ANR) dialog these links on stackoverflow and developer.android.com might help you find out why and debug it.

Community
  • 1
  • 1
Mikael Ohlson
  • 3,074
  • 1
  • 22
  • 28