Android:图库视图,我们可以命名图像吗?
当我们在Android中的图库视图中显示图像时,有什么方法可以为图库项目设置标题或设置图像名称吗?
从技术上讲,我想为每个画廊项目命名。这可能吗?
谢谢, 萨那。
When we display the images in a Gallery view in Android, is their any way to set a title or set image name for the gallery items?
Technically I would like to name each and every gallery item. Is this possible?
Thanks,
Sana.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是可能的,有两种解决方案。
您可以拥有这些标题组件(例如 TextView),并在 setOnItemSelectedListener.onItemSelected 方法中更新其值,该方法是在您使用位于中心的新对象四处晃动 itens 时调用的。
在这种情况下:假设您有一个 LinearLayout,其中有一个 id 为“title”的 TextView,其下方有一个 id 为“itens”的 Gallery。
您应该有一个像这样的方法:
或者
您可以编写自己的适配器并膨胀一个布局,您可以在那里设置标题。
It's possible, with two solutions.
You can has these components for titles (Such a TextView) and update its value in the setOnItemSelectedListener.onItemSelected method, that was called when you are flinging your itens around with the new object that will be in the center.
In this case: lets say you have an LinearLayout with an TextView with id: "title" and below it an Gallery with id: "itens".
You should have a method like this:
OR
You can write your own adapter and inflate a layout witch you can set the title there.