将Android Studio默认布局ConstraintLayout切换成LinearLayout
Posted RikkaTheWorld
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了将Android Studio默认布局ConstraintLayout切换成LinearLayout相关的知识,希望对你有一定的参考价值。
至于我对扁平化布局ConstraintLayout使用不是很熟悉,而android Studio的默认布局就是ConstraintLayout,所以想将其默认布局改为LinearLayout
找到安装AS路径
Android Studio\\plugins\\android\\lib\\templates\\activities\\common\\root\\res\\layout
下面的simple.xml.ftl文件用记事本打开
上面显示为扁平化布局的默认代码,要将其修改为线性布局
将所有代码改成:
<?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="Hello World!"
/>
</LinearLayout>
重开AS即可
以上是关于将Android Studio默认布局ConstraintLayout切换成LinearLayout的主要内容,如果未能解决你的问题,请参考以下文章