方法一:

Google更新了AS为3.0版本,由于现在大力推行ConstraintLayout布局,所以在新建工程的时候默认的布局也会变为ConstraintLayout


    以下以将ConstraintLayout修改为RelativeLayout为例。


      首先打开你的Android Sudio安装目录,进入到以下文件夹\plugins\android\lib\templates\activities\common\root\res\layout,如图所示:

Android Studio布局编辑器 androidstudio修改布局_AndroidStudio

 

 将其中的红色圈中部分改为RelativeLayout  就可以了.


但是在此目录下是更改不了的  我的做法是 将其复制出去  将其文件名后的后缀改为txt,将内容修改后,再将后缀改回来,复制到原目录下,为以防万一 ,可事先将原文件备份,修改后的文件如下图所示:

Android Studio布局编辑器 androidstudio修改布局_#if_02

 

 

这样就OK了


 

Android Studio布局编辑器 androidstudio修改布局_#if_03

 

 

方法二:

我的安装地址:E:\Android\Android Studio\plugins\android\lib\templates\activities\common\root\res\layout

Android Studio布局编辑器 androidstudio修改布局_#if_04

备份simole.xml.ftl文件,然后打开原文件

Android Studio布局编辑器 androidstudio修改布局_AndroidStudio_05

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
<#if hasAppBar && appBarLayoutName??>
    app:layout_behavior="@string/appbar_scrolling_view_behavior"
    tools:showIn="@layout/${appBarLayoutName}"
</#if>
    tools:context="${relativePackage}.${activityClass}">

<#if isNewProject!false>
    <TextView
<#if includeCppSupport!false>
        android:id="@+id/sample_text"
</#if>
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Hello World!"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

</#if>
</android.support.constraint.ConstraintLayout>

Android Studio布局编辑器 androidstudio修改布局_AndroidStudio_05

 

没错这就是ConstraintLayout的布局文件,只不过有一些条件判定,我们无视它,直接改成LinearLayout的布局代码

Android Studio布局编辑器 androidstudio修改布局_AndroidStudio_05

<?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">  
      
        <TextView  
            android:layout_width="wrap_content"  
            android:layout_height="wrap_content"  
            android:text="Hello World!"  
        />  
      
      
    </LinearLayout>

Android Studio布局编辑器 androidstudio修改布局_AndroidStudio_05

 

新建项目:

Android Studio布局编辑器 androidstudio修改布局_AndroidStudio_09