我有一個TextView定義爲Android Studio中的XML關閉標籤縮進
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingTop="@dimen/nav_header_vertical_spacing"
android:text="Semita"
android:textAppearance="@style/TextAppearance.AppCompat.Body1"
/>
但我不喜歡在同一縮進層次屬性的結束標記。當我打回退,我想它看起來像:
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingTop="@dimen/nav_header_vertical_spacing"
android:text="Semita"
android:textAppearance="@style/TextAppearance.AppCompat.Body1"
/>
是想我,我反而得到:
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingTop="@dimen/nav_header_vertical_spacing"
android:text="Semita"
android:textAppearance="@style/TextAppearance.AppCompat.Body1"/>
在/>
是在同一水平上的屬性。我怎樣才能改變這種行爲?
我需要爲每個標籤做這件事嗎?我正在尋找一個特別的選項,所以我可以將它應用於我的所有XML文件。 – hdt80
「首選項」>「編輯器」>「代碼樣式」>「XML」選項卡和空格>「連續縮進」中有一個選項。如果將連續縮進的值更改爲0,則在按下回車鍵時,不會在結束標記之前留出空格。但在缺點上,你不會在開始時獲得android屬性的縮進。 – Bob