What Process/library On Android Is Responsible For Dispatching Touch Events To Applications?
What process/library on Android is responsible for dispatching touch events to applications? I was so focused on the hooking that I completely forgot that Android source is availab
Solution 1:
I want to have my code intercept all touch events for ALL applications in the system, do custom processing on them and forward to original receiver.
This is not possible on stock android (even if your device is rooted). If you wish to do this you'll have to build your own version of the OS that allows for it.
Post a Comment for "What Process/library On Android Is Responsible For Dispatching Touch Events To Applications?"