在android中的Gallery中添加Relativelayout或listview?
我想使用图库视图来添加列表视图或相对布局。我见过的大多数示例都是在图库中添加图像,这非常简单。有人可以让我知道如何在图库视图中添加其他布局吗?
I will like to use gallery view to add listview or relativelayout. Most of the examples that I have seen are of adding images in gallery and that is quite simple. Can someone let me know how to add other layouts inside gallery view.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您只需添加一个适配器,在
getView()
方法中动态创建每个视图。所以你可以像这样创建一个RelativeLayout:
然后根据需要添加子项。
You just have to add an Adapter that creates each View dynamically in the
getView()
method.So you can create a RelativeLayout like this:
and then add children as you like.