Android Studio - how was this filesystem structure trick achieved?

I was looking through the source code of a google IO app in android studio and I came across this IDE layout in a folder res/

- how was this achieved?

But if I look at your file system in the actual structure of the file, it is a common organization values/styles.xml

, values-v17/styles.xml

, values-v21/styles.xml

. How can I achieve this in my own application?

http://i.imgur.com/OBaBnWr.png

+3


source to share


2 answers


This is a view of an android project in which a group combines different files to minimize file differences and differences between folders.

This is the default in Android 0.9.x



ASide 0.9.3

+7


source


In 0.8.4 they added "Android project view" and this is what you see. In 0.8.12, this is the default, but apparently only for new projects, so I haven't seen it in play since 0.8. 14 today.



This is also the default in parallel 0.9.x series per channel channel.

+3


source







All Articles