how can i have a gridview with independent scrolling columns
I made a gridview that consists of imageviews. Data is gathered with base adapter that parses xml.
Gridview has 3 columns. And i want that each colum开发者_StackOverflow中文版n can be scrollable independently. How can i achieve this?
You can potentially use three ListViews (or three ScrollView + vertical LinearLayout) in a horizontal LinearLayout to achieve this effect. GridView offers a single scrolling surface.
精彩评论