Tag: 日蚀

在Eclipse中格式化XML代码

当我在Eclipse中编写.xml文件时,我经常需要手动缩进代码。 例如 <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:background="@color/background" android:layout_height="fill_parent" android:layout_width="fill_parent" /> 格式化后它看起来像这样。 <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:background="@color/background" android:layout_height="fill_parent" android:layout_width="fill_parent" /> 如何自动化呢? 我无法在Eclipse for XML中find格式设置。