在Android中的Gallery View中添加RelativeLayout或ListView?

发布于 2024-09-18 05:00:38 字数 315 浏览 7 评论 0原文

有人可以告诉我如何在 GalleryView 中添加 RelativeLayoutlistview 吗?我尝试从 Gallery 适配器返回 listviewRelativeLayout 但它给出了 ClassCastException java.lang.ClassCastException: android.widget.RelativeLayout$LayoutParams。

有人可以让我知道该怎么做吗?

Can someone let me know how to add RelativeLayout or listview inside GalleryView. I have tried by returning listview or RelativeLayout from the adapter of Gallery but it gives ClassCastException java.lang.ClassCastException: android.widget.RelativeLayout$LayoutParams.

Can someone let me know how to go about it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

泛滥成性 2024-09-25 05:00:38

设置视图的LayoutParams时,需要使用父视图的特定LayoutParams。在您的情况下,您必须使用 Gallery.LayoutParams ,如下所示:

ListView listView = new ListView(cont);
listView.setLayoutParams(new Gallery.LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT));

When you set the LayoutParams of a view, you need to use the specific LayoutParams of the parent view. In your case, you have to use Gallery.LayoutParams as shown here:

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