是否可以在 Android Studio 中修改 XML 布局模板,使命名空间和属性出现在不同的行上?
默认生成的模板:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
</LinearLayout>
首选:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
</LinearLayout>
默认模板(如下)在单独的行上显示每个属性(不包括命名空间),但这些换行符不会转换为生成的资源文件。