Android Studio中是否有任何选项可以启用/禁用一行中只有一个XML文件属性?
默认情况下,我在同一行上有(例如)2或3个属性 我想每行只有一个属性。
我怎样才能做到这一点?
我的代码:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto" android:layout_width="match_parent"
android:layout_height="match_parent" android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:showIn="@layout/activity_main" tools:context=".MainActivity">
<TextView android:text="Hello World!" android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</RelativeLayout>
但我希望默认情况下这样:
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:showIn="@layout/activity_main"
tools:context=".MainActivity">
<TextView
android:text="Hello World!"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</RelativeLayout>
对我来说绝对更具可读性。
答案 0 :(得分:2)
答案 1 :(得分:0)
如果Ctrl + Alt + L不起作用,请检查“设置”->“编辑器”->“代码样式”->“ XML”->“ Android”->“布局文件”->“包装属性”
答案 2 :(得分:0)
转到左上角的文件→设置→编辑器→代码样式→XML→其他选项卡→将属性包装到“总是包装”,然后单击确定。
然后,按 CTRL + ALT + L 重新格式化代码。