My android project uses many images, and I have images for different DPIs as well. Currently, all the images reside in their respective folders in project, i.e. drawable-hdpi
, drawable-ldpi
and so on.
It works, but is it possible to have them organized in folders within their drawable
folder? like:
drawable-hdpi
> common
> activity1
> activity2
drawable-mdpi
> common
> activity1
> activity2
And, I could access them as, R.drawable.common.image1
, R.drawable.activity2.icon1
, and so on.