I am getting these errors in log cat every time I touch the screen while on my app. The app is responding normally, and I can’t understand the errors. They are all pretty much the same, here is an example:
10-23 14:25:48.865: E/ViewRoot exit(22232): Dispatching touchevent to com.android.internal.policy.impl.PhoneWindow$DecorView@2ff9a688
Could anybody explain it?
Thanks in advance!
That means that you are touching some view of yours. When that happens the
onTouchEvent()method is called.My thought is that you are not overriding that method, therefore the system launches that error to the Log to inform you of that. There is nothing wrong with that, so if the view is behaving normally, I wouldn’t be worried.
Here‘s some information on InputEvents