i want to get image name in android

for example,

ImageView img = (ImageView)findViewByID(R.id.MyImage);

img.srcName() // it should return following android:src="@drawable/abc"

is it possible or not? any help would be appreciated.

link|improve this question

r u getting any error with this ? I dont think that there is any function like this in ImageView or is it thr ??? – Android Killer Oct 26 '11 at 9:43
lol no .srcName() is not the method its dummy example i have given in this code to explain my problem what i need? – UMAR Oct 26 '11 at 9:46
feedback

2 Answers

up vote 1 down vote accepted

is it possible or not?

It is not possible. For starters, there may not be a resource involved in the ImageView, as images can come from many places.

link|improve this answer
is it possible for the imageButton? – UMAR Oct 26 '11 at 10:31
@UMAR: No. ImageButton is just a subclass of ImageView. – CommonsWare Oct 26 '11 at 10:33
actually, i am creating a rolling dice activity and for this after rolling dice i have to pick image name to give points to user for this i need to get name of the dice any idea what should i do? – UMAR Oct 26 '11 at 10:38
and those images i am displaying in imageView with animation – UMAR Oct 26 '11 at 10:38
@UMAR: You are the one calling setImageResource() to change the image as a result of the dice roll. You know at that point which image it is. – CommonsWare Oct 26 '11 at 10:40
feedback

You can get the name of the resource with this function:

getResources().getResourceName(resid);

But you need the resId for that. Check the Resources.

link|improve this answer
it will work for the hardcoded images if i change images dynamically then? – UMAR Oct 26 '11 at 11:12
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.