I want a 7x4 table backed by an adapter that never scrolls, but rather will fit to take up its available space, sizing each cell in a uniform way. I want it backed by an adapter because it has built-in functionality for taking care of data set changes and recycling views. Here's a few things I've considered:
- Extending
AbsListView
and implementing it myself - Extending
TableLayout
and giving it fields to pass in an adapter
Both seem cumbersome. I was wondering if people could see the light at the end of the tunnel, or know of any 3rd party libraries that already have what I'm seeking.