在 Android Studio 中将新 activity 的默认布局设置为 "Linear layout" 而不是 "Relative layout"
Set default layout for new activity to "Linear layout" instead of "Relative layout" in Android Studio
我的大部分 activity 通常使用线性布局。我想让 Android studio 在创建新的 activity 时默认创建线性布局,而不是相对布局。有办法吗?
像这样制作一个空白 xml 文件。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_trip_detail"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
</LinearLayout>
然后从顶部工具栏转到 Window > 在 android studio 中将当前布局存储为默认布局。此布局将成为您的默认布局。您可以通过相同的选项卡恢复您的设置。
将文件布局更改为您喜欢的 simple.xml.ftl 以下位置给出的布局
:\
我的大部分 activity 通常使用线性布局。我想让 Android studio 在创建新的 activity 时默认创建线性布局,而不是相对布局。有办法吗?
像这样制作一个空白 xml 文件。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_trip_detail"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
</LinearLayout>
然后从顶部工具栏转到 Window > 在 android studio 中将当前布局存储为默认布局。此布局将成为您的默认布局。您可以通过相同的选项卡恢复您的设置。
将文件布局更改为您喜欢的 simple.xml.ftl 以下位置给出的布局 :\