Groupping layout xml files from resources layout folder
I have a Visual Studio 2019 Xamarin.Android (None Forms) with ~ 200 xml layout files in ~\Resources\layout project folder.
Is there any way somehow to group layout xml files from ~\Resources\layout folder into several groups and support Visual Studio building the project ?
Example:
Current structure:
~\Resources\layout
----- x_layout1.xml
----- x_layout2.xml
----- x_layout3.xml
----- x_layout4.xml
----. . .
----- x_layout200.xml
Necessary structure:
~\Resources\layout
----\activities
--------- x_layout1.xml
--------- x_layout2.xml
--------. . .
----\fragments
--------\common
------------- x_layout10.xml
------------- x_layout11.xml
------------. . .
--------\blocks
------------- x_layout21.xml
------------- x_layout22.xml
------------. . .
--------\actions
------------- x_layout31.xml
------------- x_layout32.xml
------------. . .
----\dialogs
--------- x_layout41.xml
--------- x_layout42.xml
--------. . .