Android:如何获取可绘制图像名称

发布于 2024-11-19 09:57:10 字数 149 浏览 1 评论 0原文

我想获取可绘制图像的名称并将该名称存储在字符串中。例如,对于图像,我可能使用名为 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

筱果果 2024-11-26 09:57:10

我认为没有任何直接的方法来获取可绘制图像的名称,除非您将图像名称与图像一起存储。

在 XML 中,您可以执行以下操作将图像名称设置为 imageview 的附加数据

android:tag="btful.png"

以编程方式设置 imagename,

ImageView img = (ImageView) findViewByID(R.id.img)// my image
img.settag("btful.png"); // to set an image name

您可以使用 getTag() 获取图像名称

String imageName = (String)img.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

android:tag="btful.png"

Programmetically setting imagename

ImageView img = (ImageView) findViewByID(R.id.img)// my image
img.settag("btful.png"); // to set an image name

you can get the image name by using getTag()

String imageName = (String)img.getTag();
ま昔日黯然 2024-11-26 09:57:10

关于你的第二个问题“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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文