I have a very simple question:
Given a specific resource (id, string, drawable, ...) from the R.java file, is it possible to find out which ones in his folder that correspond to it? If so, how?
For example, if my device has a screen with hdpi density and I have the same file name "x.png" with "res / drawable-hdpi" and "res / drawable-mdpi", and I'm going to decode this file what I would like to get is that he got the file from res / drawable-hdpi, and knowing that it has hdpi density.
Of course, in this example, if the file exists in other folders, but not in the hdpi folder, I would like it to tell me which one will be used when decoding the file.
The same applies to other qualifiers (locale, screenSize, ...).
source share