0

I am getting the following log in the android studio Run window:

I/Choreographer: Skipped 31 frames! The application may be doing too much work on its main thread.

I am logging everything I am doing in this single activity app. It only has 2 buttons with callbacks and a textView. I have no clue as to what this might be.

Andres Gonzalez
  • 2,129
  • 5
  • 29
  • 43
  • 1
    Android 4.1's "Project Butter" introduced the `Choreographer`, which helps lock widget-based GUIs to a 60fps update cycle. That message is telling you that you have done something that has blocked the main application thread for 31 frames, or roughly 500 ms. See also http://stackoverflow.com/questions/11266535/meaning-of-choreographer-messages-in-logcat http://stackoverflow.com/questions/14678593/the-application-may-be-doing-too-much-work-on-its-main-thread - http://stackoverflow.com/questions/15963969/choreographer639-skipped-50-frames and several hundred other questions on this subject. – CommonsWare Feb 28 '17 at 22:03
  • Possible duplicate of [Meaning of Choreographer messages in Logcat](http://stackoverflow.com/questions/11266535/meaning-of-choreographer-messages-in-logcat) – Andre Classen Feb 28 '17 at 23:01

0 Answers0