How to change default template layout files in Android Studio

后端 未结 2 758
长发绾君心
长发绾君心 2020-12-18 15:20

As you know every time you create new project with some activity, Android Studio generates a default activity_main.xml file with RelativeLayout as the root element and one T

2条回答
  •  执念已碎
    2020-12-18 15:56

    You can do that by editing default template files, which are located in:

    ...\Android\Android Studio\plugins\android\lib\templates\activities
    

    so for example, default layout file for template of EmptyActivity (note: this one is specific, the other ones have their own res folders) is located in:

    ...\Android\Android Studio\plugins\android\lib\templates\activities\common\root\res\layout\simple.xml.ftl
    

    by simply replacing RelativeLayout with LinearLayout in your favourite text editor, you get what you want, but instead of that, I recommend you to make your own template, where you can define literally anything, according to your desires.

    Edit: For the BlankActivity and a guide how to edit the other templates see this link: How to change a BlankActivity template default files and a guide how to do it for any others.

提交回复
热议问题