How AdaptiveTableLayout components work together
masterThe library is composed of three main parts that work in tandem to render and manage table data:
- AdaptiveTableLayout (View): The primary UI component used in your XML layouts or programmatically to display the table.
- LinkedAdaptiveTableAdapter (Adapter): The bridge between your data and the view. It manages how data is mapped to rows and columns.
- ViewHolderImpl (ViewHolder): Handles the individual cell representations and recycling logic.