作者:lovely月夜静悄悄知_302 | 来源:互联网 | 2023-02-10 18:52
我使用的是Android SDK 2.2.3.我正在关注一本关于Android编程的书.
代码是:
我用android.support.constraint.ConstraintLayout尝试了三个不同的例子,在所有情况下我都会收到相同的错误消息:
Error:(13) No resource identifier found for attribute 'layout_constraintLeft_toLeftOf' in package 'eu.a123sandberg.webview'
build.gradle文件包含:
apply plugin: 'com.android.application'
android {
compileSdkVersion 25
buildToolsVersion "25.0.2"
defaultConfig {
applicationId "eu.a123sandberg.webview"
minSdkVersion 21
targetSdkVersion 25
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard- android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso- core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:25.1.1'
testCompile 'junit:junit:4.12'
}
我该怎么做才能解决错误?
我用Google搜索了错误,但未能找到解决错误的建议.
请帮忙.
1> Akash Patel..:
ConstraintLayout
不属于AppCompat.这是一个独立的库.
在build.gradle
文件中添加依赖项
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
并单击Sync now
.
配置“编译”已过时,已被“实现”和“ api”替换。因此使用实现'com.android.support.constraint:constraint-layout:1.1.3'