9 | It can display your files as a group of different folders only in project structure view.
10 | Note: files will not be physically moved to folders.
11 |
12 | Before decompose.
13 |
14 | res/
15 | layout/
16 | chat_activity.xml
17 | chat_toolbar.xml
18 | chat_item.xml
19 | chat_share_view.xml
20 | home_activity.xml
21 | home_toolbar.xml
22 | home_fragment_sign_in.xml
23 | home_fragment_sign_up.xml
24 |
25 |
26 | After decompose.
27 |
28 | res/
29 | layout/
30 | chat/
31 | chat_activity.xml
32 | chat_toolbar.xml
33 | chat_item.xml
34 | chat_share_view.xml
35 | home/
36 | home_activity.xml
37 | home_toolbar.xml
38 | home_fragment_sign_in.xml
39 | home_fragment_sign_up.xml
40 |
41 |
42 | Naming rules: folder name -> file name part till underscore
43 |
44 | Note The Android project view defines its own structure and does not allow modifying the structure through any extensions.
45 | ]]>
46 |
47 |