Android:如何获取可绘制图像名称
我想获取可绘制图像的名称并将该名称存储在字符串中。例如,对于图像,我可能使用名为 play.png 或 stop.png 的 .png 文件。我只是想知道可绘制对象中的哪个图像用于 ImageView..有什么方法可以获取可绘制对象/(??.png) 的名称,
谢谢。
I want to get the name of the drawable image and want to store that name in a string. For example , for an Image, I might use a .png file named play.png or stop.png. I just want to know which image in drawable is used for the ImageView.. Is there any way to get the name of the drawable/(??.png)
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为没有任何直接的方法来获取可绘制图像的名称,除非您将图像名称与图像一起存储。
在 XML 中,您可以执行以下操作将图像名称设置为 imageview 的附加数据
以编程方式设置 imagename,
您可以使用 getTag() 获取图像名称
I donot think there is any direct way to get name of drawable image unless you stores the image name along with image.
In XML you can do the following to set image name as an additional data to imageview
Programmetically setting imagename
you can get the image name by using getTag()
关于你的第二个问题“drawableImgId”为什么不使用:
img.getId();
我有多个图像,需要知道我将哪个 img id 传递给其他活动,它对我有用
Regarding your second question "drawableImgId"why not use:
img.getId();
I have multiple images and need to know which img id I am passing to other activities, it works for me