Android Studio: XML android:name auto completion



Each time manifest.xml is modified and new tag is added, Android Studio would automatically insert android:name="" in the same row..


It looks like this



<activity android:name=""...


Is it possible to change/disable this behaviour so either name attribute auto-appears on the next line (with indent applied) or not appears at all.


The code should look like:



<activity
android:name=".Foo"
androind:label="bar"
..>
</activity>


Playing with Code Style > XML didn't bring the result. May be someone knows the answer?


No comments:

Post a Comment