我是一名使用Android Studio3.0的Android开发人员。我应该说它是一个功能强大的工具但是当我创建一个新项目并选中复选框来生成布局时,它总是为我生成约束布局。但是我不需要这个。在大多数情况下,我需要相对布局作为整个布局的基本布局。如何自定义模板?有人可以提供一些技巧或解决方案吗非常感谢!!!
答案 0 :(得分:0)
您应该在Android Studio中编辑ftl
个文件。
C:\Program Files\Android\Android Studio
文件是Android Studio(和JetBrains产品)中使用的一种占位符规范
打开Android Studio位置。在我的情况下,它位于\plugins\android\lib\templates
,并深入到C:\Program Files\Android\Android Studio\plugins\android\lib\templates\activities\TabbedActivity\root\res\layout
位置。
在该位置,您可以阅读哪些目录实际反映到Android Studio模板向导窗口。
打开其中一个,例如<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/constraintLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="${packageName}.${activityClass}$PlaceholderFragment">
...
</android.support.constraint.ConstraintLayout>
,您将看到
android.support.constraint.ConstraintLayout
现在,将http://localhost:8983/solr/test/select?q=id:idval
编辑为您想要的内容,然后保存。您可能需要重新启动Android Studio才能再次读取模板。
详细信息可在以下网址找到:https://coderwall.com/p/fsxvyw/file-templates-in-android-studio