Have a number of image files resources e.g. image01.png, image02.png....
I have have set up resource folders with different locale/resolution/orientation qualifiers e.g.
/res/drawable-en-mdpi-port
/res/drawable-en-mdpi-land
/res/drawable-fr-hdpi-port...........
Image files in each differ (aspect ratio/resolution/locale-specfic image)
Is there anyway to programatically determine which actual resource file is in use in application? Would be useful to me for testing to send it out on debug log, so can be sure correct image file is being used i.e. I have set-up resource qualifiers correctly and placed correct images in correct folders.
Can do this manually, but as number of images increases this becomes a major chore.
I am guessing from similar questions about determining resource paths that this may not be possible. If not, does anyone have any tricks/tips? I could add an ID text to image (maybe even use a script to batch watermark images with filename) but would be happy to hear if there is a simpler way.