作者热门文章
- mongodb - 在 MongoDB mapreduce 中,如何展平值对象?
- javascript - 对象传播与 Object.assign
- html - 输入类型 ="submit"Vs 按钮标签它们可以互换吗?
- sql - 使用 MongoDB 而不是 MS SQL Server 的优缺点
我使用的是 Android SDK 2.2.3。我正在关注一本关于 Android 编程的书。
代码是:
<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/activity_main"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="eu.a123sandberg.webview.MainActivity"
tools:layout_editor_absoluteX="0dp"
tools:layout_editor_absoluteY="81dp">
<WebView
android:layout_width="384dp"
android:layout_height="511dp"
tools:layout_editor_absoluteX="0dp"
tools:layout_editor_absoluteY="0dp"
app:layout_constraintLeft_toLeftOf="@+id/activity_main"
tools:layout_constraintLeft_creator="0"
app:layout_constraintTop_toTopOf="@+id/activity_main"
tools:layout_constraintTop_creator="0"
app:layout_constraintRight_toRightOf="@+id/activity_main"
tools:layout_constraintRight_creator="0"
app:layout_constraintBottom_toBottomOf="@+id/activity_main"
tools:layout_constraintBottom_creator="0"
/>
</android.support.constraint.ConstraintLayout>
我用 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'
}
我必须做些什么来解决这个错误?
我用谷歌搜索了该错误,但找不到解决该错误的建议。
请帮忙。
最佳答案
ConstraintLayout
不是 AppCompat 的一部分。这是一个独立的库。
在您的 build.gradle
文件中添加依赖项
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
然后点击立即同步
。
关于android - 在包中找不到属性 'layout_constraintLeft_toLeftOf' 的资源标识符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42439241/
当我使用 aapt 命令行为新创建的 android 项目生成 .R 文件时,它显示 在包“com.test.androidpack”中找不到属性“layout_constraintLeft_toLe
我使用的是 Android SDK 2.2.3。我正在关注一本关于 Android 编程的书。 代码是: 我用 android.support.constraint.Constraint
我想知道 app:layout_constraintStart_toStartOf="" 优于 app:layout_constraintLeft_toLeftOf="" 或 Android 推荐使用
我是一名优秀的程序员,十分优秀!