Search code examples
androidandroid-studioandroid-drawablefile-managementxml-drawable

Can't see my drawable folders in android studio


I can't see my drawable's subfolders(drawable_ldpi, drawable_mdpi, ....) in android studio's project directory on left

Android Studio's project directory

And i can't access images in those folders as well but when i open it in project level i can see those folders but still can't access them in my xml or java.

project level

And here's the folder that contains them

enter image description here

Every Help will be appreciated.


Solution

  • drawable-* directories are supposed to be outside of drawable directory.

    All drawable-* directories are supposed to be in res directory.

    Read how it works here.