Let's say I have a ViewPager that takes 50% of screen height and a simple View (or other component) that takes other half of my screen. When I swipe on the View component I want my interaction to be visible on the ViewPager as if I was swiping on the ViewPager itself.
Any ideas how to implement this? I have tried overriding onTouchEvent in the View and then triggering onTouchEvent in the ViewPager, but that did not seem to work.