我只更新我的工作室(版本2.3)并构建版本('25.0.0'),
现在,当我尝试创建新活动时,会自动在constraintlayout
文件中添加dependency
build.gradle
。
并且布局呈现为父ConstraintLayout
,任何人都可以知道在创建活动时如何删除此依赖项。
活动创建之前的gradle代码。
dependencies {
compile 'com.android.support:support-v4:23.2.1'
}
活动创建后的gradle代码。
dependencies {
compile 'com.android.support:support-v4:23.2.1'
compile 'com.android.support.constraint:constraint-layout:1.0.0'
}
答案 0 :(得分:5)
您可以在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中保存文件和创建活动,它应该工作
我看起来像这样(我有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>
答案 1 :(得分:0)
最新的Android支持如果仍然无法使用,则自动生成约束布局,而不是在build.gradle文件中添加此依赖实现'com.android.support.constraint:constraint-layout:1.1.3'