I like to arrange my XML files similar to this question
但我想添加这样的订单:
layout_
属性,按字母顺序排序示例:
<Button
android:id="@id/button_accept"
style="@style/ButtonStyle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentStart="true"
android:padding="16dp"
android:text="@string/button_skip_sign_in"
android:textColor="@color/bluish_gray" />
我看了Editor -> Code Style -> XML -> Arrangement
,但我唯一能做的就是按字母顺序排序每个属性。 This documentation from IntelliJ couldn't help me我仍然不确定namespace
应该做什么。
也许这里有人更了解它?用户界面给我的印象是,匹配规则的顺序是,属性的顺序应该是什么。但不知怎的,它不会改变或做任何事情。