多行中的布局参数(android)

时间:2011-08-11 21:34:30

标签: java android layout

是否可以配置eclipse以生成不同行中每个参数的布局参数?那就是:

<LinearLayout 
xmlns:android="http://schemas.android.com/apk/res/android" 
android:layout_width="fill_parent" 
android:layout_height="fill_parent" 
android:id="@+id/linearLayout1" 
android:orientation="vertical">
</LinearLayout>

而不是

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:id="@+id/linearLayout1" android:orientation="vertical">

提前致谢

1 个答案:

答案 0 :(得分:4)

是的,你可以,我自己讨厌这个并且喜欢狩猎: - )

Eclipse&gt;窗口&gt;偏好&gt; XML&gt; XML文件&gt;编辑

这是您想要的“在新行上拆分多个属性”

Preferences

现在当你要格式化它时,CTRL + A(全选)然后按CTRL + SHIFT + F(这将格式化你的XML)