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.
feedback
|
It is not possible. For starters, there may not be a resource involved in the | |||||||||||
feedback
|
|
You can get the name of the resource with this function:
But you need the resId for that. Check the Resources. | |||
feedback
|