带有元素布局的网格视图
我正在开发 android v2.1 API 7 项目。我知道有一个很好的教程关于如何实现网格视图布局。
我感到困惑的是,如何定义网格布局的每个单元格(元素)都可以使用的布局?有这方面的例子吗?
(例如,教程中有一张图像在网格视图中占据一个单元格作为元素,我想要的是每个单元格元素都有一个布局,而不是一张图像)
I am developing android v2.1 API 7 project. I know there is a good tutorial on how to implement grid view layout on Android developer website.
What I am confusing is, how can I define a layout which can be used by each cell(element) of the grid layout? Any example on this?
(For example, the tutorial have one image occupy one cell as a element in the grid view, what I want is to have a layout for each cell element instead of one single image)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 getView 方法中扩展适配器并返回任何视图、您想要显示的任何布局。
extend adapter and return any view, any layout you want to show, in getView method.