Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have this weird ANR keydispatchingtimedout issue after my device goes to sleep and wakes up. Reproducing the bug is kind of difficult since I need 15-20 minutes of sleep to get the ANR. I'm not doing any intensive task in the UI thread. When the device goes to sleep, the app keeps doing some background (threads) work, but nothing else.

share|improve this question
Is it something in Broadcast receiver ?? – Brijesh Thakur Mar 12 '12 at 16:19
No, it is not in Broadcast receiver – Renier Marichal Mar 12 '12 at 22:31

1 Answer

You mentioned that you do some async tasks. I had this issue when I was running some network tasks, and when the task returned, the device was in sleep (onPaused called).

You might want to handle the task result or cancel the running task in the onPause.

task.cancel(true);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.