在android中的Gallery中添加Relativelayout或listview?

发布于 2024-09-18 23:39:56 字数 78 浏览 5 评论 0原文

我想使用图库视图来添加列表视图或相对布局。我见过的大多数示例都是在图库中添加图像,这非常简单。有人可以让我知道如何在图库视图中添加其他布局吗?

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

寄居人 2024-09-25 23:39:56

您只需添加一个适配器,在 getView() 方法中动态创建每个视图。

所以你可以像这样创建一个RelativeLayout:

RelativeLayout layout = new RelativeLayout(ctx);

然后根据需要添加子项。

You just have to add an Adapter that creates each View dynamically in the getView() method.

So you can create a RelativeLayout like this:

RelativeLayout layout = new RelativeLayout(ctx);

and then add children as you like.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文