我刚刚更新到Android Studio 3.5,而Code -> Reformat code
之前只是重新排列了布局中定义的每个Views
中的属性。但是现在,它完全重新组织了整个views
顺序,这不好。
例如,我需要在布局的底部具有一个View,以便在最后,其他所有内容的顶部绘制该View,并充当其他视图上的点击叠加。 Reformat code
现在将View
移动到父容器的开头,并且与其进行交互及其主要目的现在已无用。
我无法在IDE的“设置”中找到用于关闭此不必要的选项的选项。有帮助吗?
它将转换为:
<RelativeLayout
android:id="@+id/address_container"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/header">
<com.widgets.MTextInput
android:id="@+id/address_input_text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="8dp"
android:layout_marginEnd="10dp"
android:layout_marginStart="10dp"
android:layout_marginTop="10dp">
<com.widgets.MEditText
android:id="@+id/address_edit_text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:clickable="false"
android:focusable="false"
android:inputType="text"
android:textSize="14sp"
custom:key="Address" />
</com.MTextInput>
<View
android:id="@+id/address_mask"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBottom="@+id/address_input_text"
android:layout_alignEnd="@+id/address_input_text"
android:layout_alignStart="@+id/address_input_text"
android:layout_alignTop="@+id/address_input_text" />
</RelativeLayout>
对此:
<View
android:id="@+id/address_mask"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBottom="@+id/address_input_text"
android:layout_alignEnd="@+id/address_input_text"
android:layout_alignStart="@+id/address_input_text"
android:layout_alignTop="@+id/address_input_text" />
<com.widgets.MTextInput
android:id="@+id/address_input_text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="8dp"
android:layout_marginEnd="10dp"
android:layout_marginStart="10dp"
android:layout_marginTop="10dp">
<com.widgets.MEditText
android:id="@+id/address_edit_text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:clickable="false"
android:focusable="false"
android:inputType="text"
android:textSize="14sp"
custom:key="Address" />
</com.widgets.MTextInput>
</RelativeLayout>