落花踏尽游何处,笑入胡姬酒肆中。这篇文章主要讲述设置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>
【设置Android Studio工程布局文件的默认布局】保存更改,以后创建的新工程里的默认布局就是LinearLayout
推荐阅读
- Xamarin.Android RelativeLayout
- mybatis的Mapper代理原理
- AndroidStudio 3 export jar file
- appium===浮窗无法定位的解决办法
- gulp-rev-append md5版本号
- 关于SprintMVC中RequestMapping注解value值重复问题
- 应用统计平台架构设计(智能预测APP统计数据)
- Android?????????????????????????????????
- Caused by: java.lang.IllegalStateException: Unable to complete the scan for annotations for web appl