In the Android SDK documentation, all of the examples used with the @drawable/my_image xml syntax directly address images that are stored in the res/drawable directory in my project.

I am wondering if it is explicitly not okay to create a sub directory within the drawable directory.

For example, if I had the following directory layout:

res/drawable
-- sandwiches
  -- tunaOnRye.png
  -- hamAndSwiss.png
-- drinks
  -- coldOne.png
  -- hotTea.png

Could I reference the image of a tuna salad sandwich as @drawable/sandwiches/tunaOnRye

Or do I have to keep the hierarchy flat in the drawable directory.

link|improve this question
Please note that capital letters are not allowed in the res directory. – Tyler Jan 11 at 1:34
feedback

6 Answers

up vote 101 down vote accepted

No, the resources mechanism doesn't support subfolders in the drawable directory, so yes - you need to keep that hierarchy flat.

The directory layout you showed would result in none of the images being available.

From my own experiments it seems that having a subfolder with any items in it, within the res/drawable folder, will cause the resource compiler to fail -- preventing the R.java file from being generated correctly.

link|improve this answer
15  
As of Android 2.2, this doesn't cause a compiler error, but any subdirectories are ignored when generating the R class. This really sucks, and makes it hard to manage larger projects. =/ – Nik Reiman Jul 28 '10 at 8:42
5  
Totally agree. They need to come up with a better solution supporting sub-folders. It can't be that hard. – znq Sep 6 '10 at 17:22
2  
Hopefully this will be resolved soon, i've got over 100 assets, and even then i coded some of them out. Total night mare trying to manage any marginally complex project. – Emile Jan 6 '11 at 16:40
4  
This is the corresponding Issue in the Android issue tracker: code.google.com/p/android/issues/detail?id=2018 – espinchi Jul 20 '11 at 17:55
curse you android – Lee - Slalom Feb 15 at 19:44
show 1 more comment
feedback

The workaround I'm using (and the one Android itself seems to favor) is to essentially substitute an underscore for a forward slash, so your structure would look something like this:

sandwich_tunaOnRye.png
sandwich_hamAndSwiss.png
drink_coldOne.png
drink_hotTea.png

The approach requires you to be meticulous in your naming and doesn't make it much easier to wrangle the files themselves (if you decided that drinks and sandwiches should really all be "food", you'd have to do a mass rename rather than simply moving them to the directory); but your programming logic's complexity doesn't suffer too badly compared to the folder structure equivalent.

This situation sucks indeed. Android is a mixed bag of wonderful and terrible design decisions. We can only hope for the latter portion to get weeded out with all due haste :)

link|improve this answer
feedback

Yes - it does suck :) However you can use the assets folder and have sub directories in there and load images that way.

link|improve this answer
the problem is not only for drawable folder but also for layout folder :( My layout's folder contains more than 100 xml files, and it's hard for me to open the right xml layout in this. – anticafe Jan 12 '11 at 16:32
is it slower than using the resource mechanism? i guess so... – Marioo O. Lenci Oct 13 '11 at 8:12
feedback

Use assets folder.

sample code:

InputStream is = null;
try {
    is = this.getResources().getAssets().open("test/sample.png");
} catch (IOException e) {
    ;
}

image = BitmapFactory.decodeStream(is);
link|improve this answer
feedback

I like to use a simple script to flatten an organized directory structure provided by designers to something that can be used to generate an R file.

Run with current path in drawable-hdpi:

#! /bin/bash
DIRS=`find * -type d`
for dir in ${DIRS} ; do 
  for file in `ls ${dir}` ; do
    mv ${dir}/${file}  ${dir}_${file};
  done 
  rmdir ${dir};
done
link|improve this answer
feedback

One way to partially get around the problem is to use the API Level suffix. I use res/layout-v1, res/layout-v2 etc to hold multiple sub projects in the same apk. This mechanism can be used for all resource types.

Obviously, this can only be used if you are targeting API levels above the res/layout-v? you are using.

Also, watch out for the bug in Android 1.5 and 1.6. See Andoroid documentation about the API Level suffix.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.