I'm developing on Android Studio and as others IDE, Android Studio has a feature to create "regions" in the java code that can be folded. (see below)
With this kind of code
//region INITIALIZATION
private int myVaribale;
private String otherVariblae;
//endregion
We can fold/unfold the code (see screenshots below).
Is their something similar for XML editors (specially the one in Android Studio) ?
Something where we can add for example :
<!-- region MY LAYOUTS -->
<RelativeLayout>
//Some layouts
</RelativeLayout>
<!-- endregion -->