无法创建ConstraintLayout

时间:2017-12-27 16:15:06

标签: android android-constraintlayout

我正在尝试对我正在处理的项目进行一些更改,其中一个正在将一些布局从 RelativeLayout 更改为 ConstraintLayout ,事情是当我用"RelativeLayout"替换"android.support.constraint.ConstraintLayout"时,或者当我尝试使用"android.support.constraint.ConstraintLayout"创建一个新的XML布局文件时,android studio根本无法识别它!

anyhelp? enter image description here

enter image description here

1 个答案:

答案 0 :(得分:0)

build.gradle文件

中添加此依赖项
implementation 'com.android.support.constraint:constraint-layout:1.0.2'

如果您还没有迁移到gradle 4,请使用compile而不是实现。

compile 'com.android.support.constraint:constraint-layout:1.0.2'