当我在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中找不到格式设置。
CTRL + A
选择整个文本,然后CTRL + SHIFT + F