1. ホーム
  2. xml

[解決済み] EclipseでXMLコードをフォーマットする

2022-02-02 02:57:29

質問事項

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でXMLの書式設定を見つけることができません。

どのように解決するのですか?

Ctrl + シフト + F

で設定してくれるでしょう。

Window -> Preferences -> XML -> Xml Files -> Editor