2

I don't seem to have a drawable folder in Android Studio to add images..

Can I create one and will it work OK??

I'm new to this so simple steps would be appreciated.

Thanks

MMG
  • 3,226
  • 5
  • 16
  • 43
XieTy
  • 49
  • 2
  • 4
  • In the top left of android studio, above the file tree. There should be a thing that says `Android` and an android guy. Click that and set it to `project`. Do you see the folders now? Under `app/src/main/res`. – Gary Holiday Mar 15 '17 at 23:16
  • 1
    No its not there, there is the layout and mipmap folder but no drawable? – XieTy Mar 15 '17 at 23:21
  • Possible duplicate of [Where is the image folder for drawable in the Android Studio?](http://stackoverflow.com/questions/35309533/where-is-the-image-folder-for-drawable-in-the-android-studio) – Rashid Mar 16 '17 at 07:39

3 Answers3

2

Just go to your res folder and create a folder called "drawable" yourself - it will work just fine. Note that you might have to add resource-qualifiers (like -xhdpi), e.g. for pngs.

Till - Appviewer.io
  • 4,529
  • 1
  • 31
  • 35
2

in res folder right click then click "show in explorer" and then create new folder as "drawable" come back to android studio, you will get drawable folder under res directory.

viz
  • 21
  • 1
1

Set the file structure to project then under app/src/main/res you can simply create a drawable folder. Just right click the res folder and create a new directory. Name it drawable.

Gary Holiday
  • 3,297
  • 3
  • 31
  • 72