Android Studio - 以代码方式重新排列XML无法正常工作

时间:2017-10-17 22:30:13

标签: android xml android-studio reformatting

所以我试图在Settings--> Code Style --> XML中配置在Windows上使用ctrl + shift + L重新格式化代码时,我希望如何排序属性的顺序。 在我的例子中,首先是所有xmlns和其他命名空间属性,然后是所有特定视图属性 为此,我尝试使用代码样式设置中预先配置的规则,并尝试创建新规则。 默认情况下,会显示第一个xmlns标记,然后显示属性,然后显示tools:...,如下图所示: enter image description here 转到Settings--> Code Style --> XML时,我尝试使用预配置的规则,甚至尝试创建新规则,但没有设法在tools:...之后显示xmlns属性属性。
这是代码样式设置屏幕的图像,也是我尝试创建的规则 enter image description here 只是为了确保,这是我想要实现的目标:
enter image description here
我也试着翻阅文件,但由于它无法正常工作,因此无法弄清楚如何正确创建规则。
XML code style documentaion
有没有人尝试更改这些设置,和/或可以帮我设置?

谢谢

1 个答案:

答案 0 :(得分:3)

找到答案:
1.添加新规则
2.就我而言:
Name = tools:.*
Namespace = .*
3.完成!