On Mon, Aug 30, 2010 at 1:48 PM, Bret Foreman <[email protected]> wrote: > What do you think about the difficulty of synchronizing the scrolling > of the ListViews?
I think it will be difficult. I also think your solution will be memory-intensive for large numbers of columns. The "right" answer is for this to be implemented at a lower level, perhaps using the code from GridView as a basis. What you really want is a GridView that supports horizontal scrolling (up to a stated number of columns) and pinning of certain rows/columns. Done properly, the memory consumption would be limited to the visible cells -- your HorizontalScrollView-of-ListViews will require memory proportional to the total number of columns, not just the visible columns. However, to paraphrase Thomas Hobbes, any solution for this will be nasty, brutish, and long. GridView is ~2,000 lines of code, and you want a superset of GridView capabilities. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy _The Busy Coder's Guide to *Advanced* Android Development_ Version 1.9 Available! -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

