在Android中的Gallery View中添加RelativeLayout或ListView?
有人可以告诉我如何在 GalleryView
中添加 RelativeLayout
或 listview
吗?我尝试从 Gallery 适配器返回 listview
或 RelativeLayout
但它给出了 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
设置视图的LayoutParams时,需要使用父视图的特定LayoutParams。在您的情况下,您必须使用 Gallery.LayoutParams ,如下所示:
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: