gpt4 book ai didi

android - 如何更改 Android Studio 的默认行为

转载 作者:搜寻专家 更新时间:2023-11-01 09:28:35 25 4
gpt4 key购买 nike

我们能否将 Android Studio 的默认构建行为从约束更改为相对布局?

问题:有时清理/重建我的项目需要更多时间。而且我从不使用Constraint Layout,所以我想将Android Studio的构建行为从Constraint Layout设置为Relative Layout

我希望每次打开 AS 时,它都应该打开 Relative。是否可以实现?

最佳答案

将当前项目的默认布局设为Relative

首先打开您的.xml 文件并将您的constraint 布局更改为relative 布局。然后在项目打开的情况下转到 Android Studio 的顶部菜单。然后转到“窗口”选项卡,然后选择“将当前布局存储为默认值”。如果默认布局不是您喜欢的,请下载您想要的默认布局并将其设置为默认布局。

将所有项目的默认布局设为Relative

只需修改存在于android studio资源中的模板布局文件

C:\Program Files\Android\Android Studio\plugins\android\lib\templates\activities\common\root\res\layout

现在编辑此文件 simple.xml.ftl 并根据您的选择更改布局(注意。 要设置默认相对,只需将下面的代码复制到您的 simple. xml.ftl 文件),请注意某些布局需要额外的元素(例如 LinearLayout 需要 android:orientation),保存文件并在 Android Studio 中创建 Activity ,它应该可以工作。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
<#if hasAppBar && appBarLayoutName??>
xmlns:app="http://schemas.android.com/apk/res-auto"
</#if>
android:id="@+id/${simpleLayoutName}"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin"
<#if hasAppBar && appBarLayoutName??>
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:showIn="@layout/${appBarLayoutName}"
</#if>
tools:context="${relativePackage}.${activityClass}">

<#if isNewProject!false>
<TextView
<#if includeCppSupport!false>
android:id="@+id/sample_text"
</#if>
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!" />
</#if>
</RelativeLayout>

关于android - 如何更改 Android Studio 的默认行为,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49098646/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com