那就是,你自定义的顶部布局显示的时候的代码有问题呗,检查一下吧,是不是写的不够合理,或者涉及到太多的界面绘制一类耗费UI线程的东西了
skipped xxx frames!The application may be doing too much的正确解决办法是将一些消耗时间比较大的逻辑(比如加载数据)异步化
Put the animation in the XML file and play it will appear I/Choreographer: Skipped 1 frames! The application may be doing too much work on its main thread.
Android 界面加载卡顿严重,Skipped 56 frames! The application may be doing too much work on its main thread 技术标签:Android界面卡顿丢帧严重 在APP开发中,出现了部分界面卡顿十分严重的情况,日志中报 说明在主线程做了太多的耗时操作。 应当注意: 不应在主线程中进行耗时操作,比如网络请求,很复杂耗时的计算,...
what happened, start of app. log: 01-30 20:16:25.905 V/FolderObserver(15186): observer created for /storage/C346-D6B5/Android/data/com.nutomic.syncthingandroid/files/*** 01-30 20:16:26.626 I/Choreographer(15186): Skipped 59 frames! Th...
Then it said: I/Choreographer﹕ Skipped 1405 frames! The application may be doing too much work on its main thread. Here is a copy of my code: public class MainListActivity extends ListActivity { protected String[] mBlogPostTitles;public static final int NUMBER_OF_POSTS = 20;public static...
Hi @"tomek.1101" ,if happen this error, It maybe because of some heavy processing that you are doing at the heart of your application or DB access or any other thing which causes the thread to stop for a while.Solution is : Do it in a different thead.Here is a similar discusstion...
"Skipped 60 frames! The application may be doing too much work on its main thread"--BlogReader This error just showed up while doing a run I did at the end of the Getting Data from a JSON Request video. I can't make heads or tails out of the info I see when g...
Skipped60frames!Theapplication may be doing too much work on its main thread 很简单也很直白的提示了,跳过了60帧,有可能在主线程做了较为耗时的操作,但是这些操作又不至于到使程序达到ANR的地步。 既然原因找到了咱们就动手了,于是开始查找activity的耗时的操作并进行相关的优化,本以为大功告成可以撸一把了,...
闪退日志:Skipped 62 frames! The application may be doing too much work on its main thread,主线程做了太多事 解决历程: 最开始以为单帧处理东西太多,但这个手机之前在单帧处理大量消息时都没闪退【PS:1秒1000多条消息都处理过来了,虽然后面优化了,不是这个数量级了】。