I am developing a view in which i want to display some thumbnail images and one-line information about them.
I've user to BaseAdapter to achieve my task and it's working well.
The number of images I get to display is dynamic and can be anything > 1. The items display in a grid of 3 columns and multiple number of rows. When the size of items is larger, a vertical scroll bar is attached and I can scroll through all the items.
Now what I want is that I can somehow manage to fix the number of rows so that number of columns becomes dynamic. So the scrolling would become Horizontal rather than vertical. What I've learn so far is that horizontal scroll bar will appear only if the number of columns is not adjustable within the width of the screen.
I want a horizontal scroll either by
1- horizontal scroll bar
2- OR horizontal slide
Is that achievable?
Thanks for your comments!



