[在此处输入图片描述]
在右上角的缩放按钮旁边,出现一个蓝色警告,基本上说:
无法启动一门或多门课程
无法实例化以下类:
具有异常详细信息:
异常详细信息java.lang.NoClassDefFoundError:android / support / constraint / R $ styleable android.support.constraint.ConstraintLayout.init(ConstraintLayout.java:599)android.support.constraint.ConstraintLayout。(ConstraintLayout.java:576 )java.lang.reflect.Constructor.newInstance(Constructor.java:423)android.view.LayoutInflater.createViewFromTag(LayoutInflater.java:730)android.view.LayoutInflater.inflate(LayoutInflater.java:492) android.view.LayoutInflater.inflate(LayoutInflater.java:394)
,也可以是activity_main.xml的文本格式
<?xml version="1.0" encoding="utf-8"?>
<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:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</android.support.constraint.ConstraintLayout>
在tools:context =“。MainActivity”行上。MainActivity以红色显示,表示“未解决的类MainActivity”
这是我的AndroidManifest.xml文件:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.kaan.asd">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
我是Android Studio的新手,并且已经尝试解决问题已有一段时间了,我曾尝试清除缓存,清理/重建项目,但均未解决问题。 我在Windows上使用Android Studio 3.3.1版本和gradle版本4.10.1。 如果有人可以帮助我修复它,我会推荐它。
答案 0 :(得分:0)
您必须在android目录中添加约束布局存储库: app / build.gradle ,如下所示:
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
然后同步您的项目并享受这种完美的布局。