What is the difference between the three drawable folders in the res folder in the project hierarchy? If I have an image to put into a folder, which folder do I put it in?

link|improve this question

feedback

2 Answers

up vote 21 down vote accepted

I am going to take a guess that "the three drawable folders" are drawable-ldpi, drawable-mdpi, and drawable-hdpi. In that case, if you stick with all of those folders, you need to put one image in each, sized to match the indicated screen density. This is discussed in the online documentation as well as this blog post. You can find a set of sample projects showing use of different drawable resources based on screen density here.

If you are just starting out in Android development, you can get rid of all three of those directories and create a single drawable directory, putting your image in there. Eventually, though, for a quality application, you will want to test your images on different devices/emulators with different screen densities, and possibly have different images for each density to improve the look of your app.

link|improve this answer
2  
You don't NEED to put an image in each; the platform will pick the image that best matches the device's density, and it it isn't exact scale it to match. Also for applications targeting 1.6 or later, it is strongly recommended that you put your bitmaps in a directory that matches its designed density (it makes no sense to have a bitmap without a density specification); of course non-bitmaps like the various XML drawables generally have no such need and should be in the plain directory. See also: developer.android.com/guide/topics/resources/… – hackbod Mar 28 '10 at 17:56
LINT will complain if you put scalable bitmaps in the /drawable folder. It's currently intended for densityless items such as xml-based drawables. – Shamrflow Apr 9 at 10:55
feedback

Here is a reference to multi device options.

As said by @CommonsWare, you don't need to put resources in anything but res/ layout/ or drawable/ but if you want you're program to have a better experience on multiple devices with different screens / density / languages you may want to consider what you can do.

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.