您的位置:首页 > 移动开发 > Android开发

Android Studio 2.3更换默认的ConstraintLayout布局

2017-07-19 14:33 429 查看
首先打开你的Android Sudio安装目录,我的为D:\Program Files\Android\Android Studio,进入到以下文件夹\plugins\android\lib\templates\activities\common\root\res\layout,如图所示:



然后使用文本编辑器打开simple.xml.ftl文件:如下图



 这就是ConstraintLayout的布局文件,去掉条件判定,直接改成LinearLayout的布局代码

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

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hellp World" />

</LinearLayout>


然后保存即可。

注意:为了防止错误操作以及方便日后还原,最好在修改前备份一下simple.xml.ftl文件。

 

重启AndroidStudio,新建一个工程,默认的布局就变成了LinearLayout了。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息