我怎样才能有一个带有独立滚动列的gridview
我制作了一个由图像视图组成的网格视图。数据是通过解析 xml 的基本适配器收集的。
Gridview 有 3 列。我希望每一列都可以独立滚动。我怎样才能做到这一点?
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 column can be scrollable independently. How can i achieve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在水平 LinearLayout 中使用三个 ListView(或三个 ScrollView + 垂直 LinearLayout)来实现此效果。 GridView 提供单个滚动表面。
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.