How to create layout-small-land folder?

android, java, layout

Solution

`layout-small-land` and `layout-small-port` are the correct answers, and they compile just fine for me. Perhaps there is something else amiss in your directory structure.

Problem

I want to create separate folders for my layouts, like this in my resource directory: ``` layout-land layout-port ``` this is ok, but this: ``` layout-small-land layout-small-port ``` or ``` layout-land-small layout-port-small ``` Results in: 'Invalid resource directory name' What gives?

Original source