Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

I use traceView and i see android.view.ViewRoot.handleMessage 76.4%

Tags:

android

I use traceView and i see android.view.ViewRoot.handleMessage 76.4% What does this mean? and how to find where is this bug in my source?

enter image description here

like image 924
Max Usanin Avatar asked Dec 19 '12 08:12

Max Usanin


1 Answers

This is probably OK. This value shows how much cpu takes the whole rendering process (so traverse by all views to find views to invaliade, call View.draw() and View.onDraw() methods, lock/unlock the canvas). Probably most of this 76% it's your code, so you should start to check time spend by your classes.

like image 178
thearti Avatar answered Nov 15 '22 01:11

thearti