I have 2 ScrollViews in my android layout. How can I synchronise their scroll positions?
Why not just implements OnTouchListener in your activity. Then override the onTouch method, then get the scroll postion of the first ScrollViewOne.getScrollY() and update ScrollViewTwo.scrollTo(0, ScrollViewOne.getScrollY());
OnTouchListener
ScrollViewOne.getScrollY()
ScrollViewTwo.scrollTo(0, ScrollViewOne.getScrollY());
Just another idea... :)