如何在图片库中显示自定义名称(Toast 消息)
我正在寻找一种在普通 Android 画廊中显示 toast 消息的方法。但是...我想为选择图像时显示的每个图像设置自定义名称。我该怎么做?
I am looking for a way to show a toast messages in your average android gallery. BUT...I want to set custom names for each image that displays when the image is selected. How can i do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
向您的图库添加一个侦听器
您可以在选择某个项目时
,该方法将调用 OnItemSelectedListener 类中的一个方法,该位置与图库中选定的项目相关,您可以使用它来显示有关该项目的任何信息使用 Toast 消息。希望这有帮助。
You could add a listener to your gallery
when a item is selected this method
which is a method from the OnItemSelectedListener class is going to get called, the position relates to the selected item in your gallery that you could use to display any information about that item using a Toast message. Hope this helps.