Reputation: 49
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
Upvotes: 2
Views: 4109
Reputation: 21
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.
Upvotes: 2
Reputation: 21
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.
Upvotes: 2
Reputation: 3552
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
.
Upvotes: 1