作者:隆重黄_927 | 来源:互联网 | 2023-02-10 15:05
我遇到Android Studio问题.我最近升级了我的SDK Manager以包含;
compile 'com.android.support.constraint:constraint-layout:1.0.0-beta5'
classpath是
classpath 'com.android.tools.build:gradle:2.2.3'
项目建设很好.Intellisense和文档工作正常.但是,当我尝试在手机上运行(调试)应用程序时,我收到此错误;
Caused by: android.view.InflateException: Binary XML file line #2:
Binary XML file line #2: Error inflating class ConstraintLayout
at android.view.LayoutInflater.inflate(LayoutInflater.java:539)
at android.view.LayoutInflater.inflate(LayoutInflater.java:423)
at android.view.LayoutInflater.inflate(LayoutInflater.java:374)
at com.android.internal.policy.PhoneWindow.setContentView(PhoneWindow.java:443)
at android.app.Activity.setContentView(Activity.java:2172)
我已经同步了.我重新启动了Android Studio.我已经清理并重建了这个项目.
有想法该怎么解决这个吗?谢谢!
-edit- XML看起来像这样;
arjun..
28
你应该添加如下
compile 'com.android.support.constraint:constraint-layout:1.0.2'
有关最新版本,请点击此处
1> arjun..:
你应该添加如下
compile 'com.android.support.constraint:constraint-layout:1.0.2'
有关最新版本,请点击此处
对于那些从android支持切换到androidx的用户,请记住将android.support.constraint.ConstraintLayout更改为androidx.constraintlayout.widget.ConstraintLayout。