Android 中的 GridView
我在 android 中有一个图像网格视图。当我单击其上的任何项目时,我想在其上显示一组新的项目。这是屏幕截图。
这可以使用 gridview 来完成吗?另外,必须通过 gridview 的视图类型应该是什么?背景最好是褪色。
I have a gridview of images in android. When i click any item on it, i want to show a new set of items over it. This is the screen shot .
Can this be done using gridview? Also what should be the type of view which must come over the gridview? The background should become preferably faded.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不太确定您是否可以使用网格视图实现第二个视图。在网格视图中,据我所知,您没有任何指定网格元素位置的选项。它只是从左到右排列并环绕。
但这是我的做法 -
视图,正如您已经知道/完成的那样。
visibility
属性将一个视图显示在另一个视图之上。 布局充气器I am not so sure if you can achieve the second view using a grid view. In the grid view AFAIK you don't have any option of specifying the location of the grid elements. It just arranges it from left to right and wraps around.
But here is how I would do it -
view, as you already know/done.
visibility
attribute of the view. Layout Inflater