Using two o more listViews, how to sync all of then when one of the listview is scrolled up or down?

  1. Have you considered trying the TableView extension by @Ken. This helps to overcome such things

  2. You can synchronise your listviews, as long as each row in every listview is the same height. See this demo app in the gallery: https://gallery.appinventor.mit.edu/?galleryid=4990166434054144. In essence (if I remember correctly)you place all your listviews inside a horizontal arrangement, inside a vertical scrolling arrangement, but set the height of your listviews to something far greater than your lists). Also see here for managing that part programatically: * Automatically Expand Listview Height in Scrolling Arrangement

1 Like