我在android studio中创建了一个简单的布局文件,如下所示:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">
<EditText
android:id="@+id/NameEditText"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</LinearLayout>
当我按ALT + CTRL + L(重新格式化)时,android studio会将我的代码更改为:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<EditText
android:id="@+id/NameEditText"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1" />
</LinearLayout>
您可能会注意到,按钮的位置已从末尾更改为第一个位置,而edittext的位置已从代码的开头更改为代码的结尾!
能否请您告诉我这种行为是否是错误?如果不是错误,如何配置android studio以使其正常运行?
答案 0 :(得分:1)
文件>设置>编辑器>代码样式> XML>排列(标签)>强制重新排列=>从不