I have an app with some images exists only in the xxhdpi folder.
When I try to access to those imagse, through context.getResources(...) I see in some phones it crash.
is it possible that it crash because those phones doesn't supports the density in xxhdpi and therefore it cannot find them?
or even though the phone is not in density for xxhdpi, it still needs to find it, so it doesn't matter?
In bottom line, my question is what happens if I put some images only in xxhdpi folder, and the phone doesn't supports by default in xxhdpi resolution?
this isn't best solution to MOVE pretty big image file from
xxhdpito default folder as accepted answer suggests... it will be scalled everytime when it will be fetched, so onxxhdpidevices it will be scaled-up 3x - unnecessary work. besides that some old devices may have problem with loading such big picture, due to max bitmap size limitation. it would be better to COPY this file tomdpifolder and rescale it in there (3x smaller) - onxxhdpiwill be used original one, on all other scaled version, but not so enormousofc best way is to put properly scaled image in every density bucket