This is a scenario. There are folders:
An imag
why do you want to put an image file into the drawable folder ?
according to tips i've read over the internet , you should not put images files in the drawable folder .
in the drawable folder you put only xml type drawables.
if you want to put an image file , put it in any of the following folders (or add an additional qualifier for them , or use other qualifiers ) :
images that are put into the drawable folder are treated as default , which is mdpi . so if you want to keep the file in the same screen density category , put it into the drawable-mdpi folder.
another reason for not putting an image into the drawable folder is that android will automatically convert the file to 16 bit image for some devices (like the samsung galaxy s) , which will make the image look awful on some cases.
here's a link that explains this issue .