In Android Studio, can layout xml files be grouped into folders?

android, layout, xml

Solution

No, the files have to be in predefined folders.

Here is a link to more information on available folder names: http://developer.android.com/guide/topics/resources/providing-resources.html

Problem

In Android Studio, can layout xml files be grouped into folders? Able to do it with the java files by creating different packages/folders, can the layout files be similarly grouped/organized? Looking for ease of organization in my workflow when i have a ton of xml files to work with.

Original source

Related problems