Lorsque j'écris des fichiers .xml dans Eclipse, je dois souvent indenter manuellement le code. Par exemple
<?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" />
Après le formatage, cela ressemble à ceci.
<?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" />
Comment automatiser cela ? Je ne trouve pas de paramètres de formatage dans Eclipse pour le XML.