Reputation: 5522
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!
Upvotes: 1
Views: 677
Reputation: 90
I do meet a lot of that errors in my project, I agree with the first answer. I did't override some method or some kinds of touchment in u view. mostly u don't need to worry about those runtime errors.
Upvotes: 1
Reputation: 7095
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
Upvotes: 1