gpt4 book ai didi

android - 在 gradle 中自动添加 ConstraintLayout 依赖

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:35:29 25 4
gpt4 key购买 nike

只是我更新了我的工作室(版本 2.3) 和构建版本 ('25.0.0')

现在,当我尝试创建新 Activity 时,constraintlayout dependency 会自动添加到我的 build.gradle 文件中。

和布局呈现为父ConstraintLayout,有谁知道如何在创建 Activity 时删除此依赖项。

在 Activity 创建 gradle 代码之前。

dependencies {
compile 'com.android.support:support-v4:23.2.1'
}

在 Activity 创建 gradle 代码之后。

dependencies {
compile 'com.android.support:support-v4:23.2.1'
compile 'com.android.support.constraint:constraint-layout:1.0.0'
}

最佳答案

您可以修改Android Studio资源中的默认模板布局文件,路径:

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

编辑文件 simple.xml.ftl 并根据您的选择更改布局,请注意某些布局需要额外的元素(例如 LinearLayout 需要 android:orientation),保存文件并在 Android Studio 中创建 Activity ,它应该可以工作。

我的看起来像这样(我有 2.2.3,所以我有 RelativeLayout)

<?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 - 在 gradle 中自动添加 ConstraintLayout 依赖,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42778938/

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