I have a fairly complex android app, the contents of the \'layout\' folder is becoming increasingly large. I\'ve tried to organise the individual layout xml files into sub f
Now with Android Studio and Gradle, you can have multiple resource folders in your project. Allowing to organize not only your layout files but any kind of resources.
It's not exactly a sub-folder, but may separte parts of your application.
The configuration is like this:
sourceSets {
main {
res.srcDirs = ['src/main/res', 'src/main/res2']
}
}
Check the documentation.