2

一起使用 GridLayout 和 ConstraintLayout 时出现以下错误

Error:(115) Attribute "orientation" has already been defined

问题是因为两个库都使用这个

<attr name="orientation">

有谁知道解决方法?

4

2 回答 2

5

这已在ConstraintLayout1.0.0-alpha2(发行说明)中得到修复。
将您的依赖项更新为:

compile 'com.android.support.constraint:constraint-layout:1.0.0-alpha2'
于 2016-05-30T17:09:02.480 回答
3

这已经在即将发布的 CL 版本中报告并可能修复:https ://code.google.com/p/android/issues/detail?id=210511

至于解决方法,我发现除了禁用任一布局:/

于 2016-05-23T05:50:47.947 回答