Is their a "region-like" folding feature for Android Studio Is their a "region-like" folding feature for Android Studio xml xml

Is their a "region-like" folding feature for Android Studio


You can now do this:

<!--region Title--><View    android:layout_width="wrap_content"    android:layout_height="wrap_content"/><!--endregion-->

(I'm using Android Studio 3.0 and not sure when it was supported)


Android Studio's XML editor supports only folding on IDE level with Cmd+Alt+"+" or "-".


You can simply achieve this by

//region name~~~Code~~~//endregion

Check it out this link for more info. Create Regions in Android Studio