设置Android Studio工程布局文件的默认布局

Posted 布伊什

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了设置Android Studio工程布局文件的默认布局相关的知识,希望对你有一定的参考价值。

每次创建新的工程后,布局文件的的布局总是ConstraintLayout,如何更改?

进入android Studio安装目录,用文本编辑器打开文件pluginsandroidlib emplatesactivitiescommon oot eslayoutsimple.xml.ftl

将文件内容修改为

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <TextView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:gravity="center"
        android:text="Hello World" />
</LinearLayout>

保存更改,以后创建的新工程里的默认布局就是LinearLayout

以上是关于设置Android Studio工程布局文件的默认布局的主要内容,如果未能解决你的问题,请参考以下文章

android studio怎么设置布局

android studio怎么设置布局

android studio怎么实时预览布局界面

如何在 Android Studio 上更改布局预览默认设备

如何设置android studio run release

android studio 如何设置中文应用名?