美文网首页Android开发
ConstraintLayout报错问题-找不到资源

ConstraintLayout报错问题-找不到资源

作者: 拉赫曼 | 来源:发表于2018-01-18 15:44 被阅读0次

在AndroidStudio中引入 ConstraintLayout后,编译报错:

Error:(80) No resource identifier found for attribute 'layout_constraintVertical_chainStyle' in package 

build.gradle中的配置ConstraintLayout如下

    compile 'com.android.support.constraint:constraint-layout:1.0.0-alpha7'

解决方法:

  1. 更新androidStudio Support repository,其中有一项就是ConstraintLayout for Android
  2. 查看已安装的ConstraintLayout版本
    路径:sdk/extras/m2repository/com/android/support/constraint/constraint-layout
    我安装的版本有两个1.0.0-alpha7 和 1.0.2

因此用 1.0.2 版本替换 1.0.0-alpha7

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

随后sync project,解决问题!

相关文章

网友评论

    本文标题:ConstraintLayout报错问题-找不到资源

    本文链接:https://www.haomeiwen.com/subject/gejwoxtx.html