每次重新格式化XML代码时,xmlns
都会上移到写有根元素标记名的行。
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent">
xmlns:android...
在CoordinatorLayout
旁边。我在AndroidStudio中玩了“代码样式”菜单的XML部分,但无法做到这一点。
当我重新格式化布局XML文件时,这就是我想要的:
<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent">
有人可以帮我吗?