ide - How to "Stack" code in Android Studio's Editor? -
i've decided dive android development following google's udacity course, till' everything's fine except there's slight thing that's annoying me.
as can see in codes on top of each other (organized me , want way).
android:layout_width="match_parent" android:layout_height="match_parent" android:paddingleft="@dimen/activity_horizontal_margin" android:paddingright="@dimen/activity_horizontal_margin" android:paddingtop="@dimen/activity_vertical_margin" android:paddingbottom="@dimen/activity_vertical_margin" tools:context=".mainactivityfragment">
but default insists organize this:
android:name="com.example.saad.sunshine.app.mainactivityfragment" tools:layout="@layout/fragment_main" android:layout_width="match_parent" android:layout_height="match_parent" />
is there way change default behaviour of android studio want? option in settings?
here can change appearance of xml files:
settings >> code style >> xml
Comments
Post a Comment