evrencoskun / TableView

TableView is a powerful Android library for displaying complex data structures and rendering tabular data composed of rows, columns and cells.
MIT License
3.14k stars 459 forks source link

synchronize scroll vertically and horizontally #294

Open JaydipMeghapara opened 4 years ago

JaydipMeghapara commented 4 years ago

How can I implement synchronize scroll vertically and horizontally?

Like this https://github.com/Cleveroad/AdaptiveTableLayout/blob/master/images/demo.gif

evrencoskun commented 4 years ago

Hi @JaydipMeghapara

It's not possible on the current version. TableView uses LinearLayoutManager as a base layout manager for its nested RecyclerViews. And LinearLayoutManager allows scrolling only horizontally or vertically. To get your demand feature, you need to override the existing layout manager of the TableView.