Synchronise ScrollView scroll positions - android

前端 未结 4 2107
误落风尘
误落风尘 2020-11-22 07:05

I have 2 ScrollViews in my android layout. How can I synchronise their scroll positions?

4条回答
  •  深忆病人
    2020-11-22 07:39

    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());

    Just another idea... :)

提交回复
热议问题