是否可以为Android Studio启用XML自动格式化?我的意思是,一行中的一个属性。例如:
DEFAULT STYLE:
<rootNode property1="abc" property2="abc" property3="abc" property4="abc" property5="abc" property6="abc" property7="abc" property8="abc">
<children otherProperty1="abc" otherProperty2="abc" otherProperty3="220">
</children>
</rootNode>
格式化风格:
<rootNode
property1="abc"
property2="abc"
property3="abc"
property4="abc"
property5="abc"
property6="abc"
property7="abc"
property8="abc">
<children
otherProperty1="abc"
otherProperty2="abc"
otherProperty3="220">
</children>
</rootNode>
以默认格式样式搜索和更改值有点烦人。