gpt4 book ai didi

android - 在 android studio 中膨胀 ConstraintLayout 时出错

转载 作者:塔克拉玛干 更新时间:2023-11-01 21:37:05 25 4
gpt4 key购买 nike

我在使用 Android Studio 时遇到问题。我最近升级了我的 SDK 管理器以包含;

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

类路径是

 classpath 'com.android.tools.build:gradle:2.2.3'

项目构建良好。智能感知和文档工作正常。但是,当我尝试在我的手机上运行(调试)该应用程序时,出现此错误;

 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)

我已经同步了 gradle。我已经重新启动了 Android Studio。我已经清理并重建了项目。

关于如何解决这个问题的任何想法?谢谢!

-编辑-XML 看起来像这样;

<ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/PLAY_PARENT"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/greenfelt2"
android:padding="0dp">

最佳答案

你应该如下添加

<android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/PLAY_PARENT"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/greenfelt2"
android:padding="0dp">

编译 'com.android.support.constraint:constraint-layout:1.0.2'

最新版本检查here

ConstraintLayout Usage 上查看此项目以获取更多信息

更新

对于那些从 android 支持切换到 androidx 的人,记得将 android.support.constraint.ConstraintLayout 更改为 androidx.constraintlayout.widget.ConstraintLayout

关于android - 在 android studio 中膨胀 ConstraintLayout 时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42501868/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com