In my application I have a ViewPager with each one a custom ListView in it linked toghether like row in a table. The problem is that when I scroll a ListView in the first pa
Are the listview item heights equal? if so, you could pass the position of the top visible element to the other listview adapters.
int curTop=listview.getFirstVisiblePosition(); listview2.setSelection(curTop);