I would like to implement a list view that contains a series of thumbnails on each row. I have tried a list view with embedded gallery widgets. It’s not working, nothing is being displayed. Just wondering if I’m on the right path, or should I use a different widget for this layout.
Row 1: Image1 Image 2 Image3
Row 2: Image1 Image 2 Image3
etc.
Thanks.
I was able to solve this problem by creating a scroll view that contained a linear layout. In my code I programmatically added HorizontalScrollView objects, found here: https://github.com/vieux/Android-Horizontal-ListView. Thanks