Autocomplete Android Studio-自动关闭标签-在新行中关闭

Autocomplete Android Studio-自动关闭标签-在新行中关闭,autocomplete,android-studio,Autocomplete,Android Studio,我正在使用Android Studio 0.8.6 我想改变标签自动关闭的方式 现在看起来是这样的: <Button android:layout_width="wrap_content" android:layout_height="wrap_content" /> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" />

我正在使用Android Studio 0.8.6

我想改变标签自动关闭的方式

现在看起来是这样的:

<Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" />
<Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" 
/>

我想要这样的东西:

<Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" />
<Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" 
/>

因为当我想复制最后一个属性时,我不能只选择整行,因为标记结束在那里


我在
文件->设置->编辑器中寻找这样的选项,但我找不到它。

转到文件->设置-(或单击Ctrl+Alt+S转到设置),从下拉菜单中展开编辑器,然后展开代码样式并单击XML。然后从右侧显示的选项卡中单击Android选项卡。然后看一看这些部分-其中一个部分的标题是:布局文件。勾选布局文件部分中最后一个属性后插入换行符旁边的复选框。单击应用,然后单击确定,然后转到您的XML文件并重新格式化代码(Ctrl+Alt+S)。

好吧,它适合我。但不幸的是,
/>
的缩进级别与其中一个属性相同,这破坏了清晰指示的整个目的,即标记结束,似乎没有任何选项来修复它!