tufanv Expert Licensed User Longtime User Oct 19, 2017 #1 Hello, is it possible to sync 2 listviews scroll ? If I scroll one of them , other one will scroll too ? There is an b4j example for that but couldnt find any for b4a. Thanks
Hello, is it possible to sync 2 listviews scroll ? If I scroll one of them , other one will scroll too ? There is an b4j example for that but couldnt find any for b4a. Thanks
Erel B4X founder Staff member Licensed User Longtime User Oct 19, 2017 #2 ListView doesn't expose a Scroll event. You can try to implement it with this library: https://www.b4x.com/android/forum/t...hscrollevents-scrollpanel-demo.19839/#content If you are not showing too many items then it will be simpler to use CustomListView. You can combing both lists into a single list and you have full control over the scroll state. Upvote 0
ListView doesn't expose a Scroll event. You can try to implement it with this library: https://www.b4x.com/android/forum/t...hscrollevents-scrollpanel-demo.19839/#content If you are not showing too many items then it will be simpler to use CustomListView. You can combing both lists into a single list and you have full control over the scroll state.