如何在Eclipse中格式化Android xml?

时间:2011-12-21 08:45:43

标签: android eclipse refactoring

Eclipse中的Android GUI设计器将这种类型的XML(进入布局)吐出来:

<Button android:layout_height="wrap_content" android:id="@+id/btnSaveMessage" android:layout_width="wrap_content" android:layout_gravity="right" android:text="@string/text_save" android:width="125dp"></Button>

Eclipse中是否有重构将此goo转换为格式相当的XML,如下所示:

<Button android:layout_height="wrap_content" 
        android:id="@+id/btnSaveMessage" 
        android:layout_width="wrap_content" 
        android:layout_gravity="right" 
        android:text="@string/text_save" 
        android:width="125dp"/>

2 个答案:

答案 0 :(得分:4)

ctrl + shift + F

ctrl + I

答案 1 :(得分:2)

是的,你可以这样做。

为此,请按照步骤

进行操作
  1. 在xml文件中选择源代码。
  2. 右键单击选定的源代码。
  3. 现在转到Source-&gt;清理文档。
  4. 现在弹出一个清理窗口,标记检查适当的选项并单击确定。
  5. 您还可以选择source-&gt;格式在xml中进行一些格式化。除了格式之外,清理提供了一些其他的功能。

    Cleanup window