Android Studio - layout-land folder not appearing

I'm posting this just in case anyone really likes Android hirearchy of the project (note: other answers using classic hirearchy are correct as well).

All layout dirs with different qualifiers are categorized under name "layout". Just right click on the "layout" create your xml with any qualifier you need and you'll get this hirearchy (image below).

All layout dirs categorized under "layout".

Notice activity_main.xml is not a directorty but a category collecting all activity_main.xml files with different qualifiers.

This categorizing pattern appears quite often in Android hirearchy.


That's the slightly confusing 'android' view of Android Studio. It shows only one layout folder (also shows only one drawable folder) which really contains all folders. Switch the view to 'project' and you'll see all folders.

enter image description here