Is it possible to detect all touch events in an Activity and capture it and then in return pass that pass event to another View?
For example:
Button 1 and Button 2. When Button 1 is pressed I want to capture that touch/click event and automatically pass that touch event to Button 2, basically with one touch/press you get the click generated and that same click is passed on to the second button automatically.
take look this API description first.
As you can see, you can intercept all touch events.
These codes are what you are looking I think.