gpt4 book ai didi

java - 不能在 AndroidX 中使用 CoordinatorLayout

转载 作者:行者123 更新时间:2023-11-29 22:39:30 26 4
gpt4 key购买 nike

我正在尝试将 CoordinatorLayoutAndroidx 一起使用,但出现此错误

找不到以下类:androidx.coordinatorlayout.widget.CoordinatorLayout

我不知道为什么我会收到这个错误,尽管我把它放在了依赖项上。

我也尝试更改 androidx.appcompat 的版本,但我也遇到了同样的错误

Build.Gradle

apply plugin: 'com.android.application'

android {
compileSdkVersion 29
buildToolsVersion "29.0.2"
defaultConfig {
applicationId "com.example.bitprojecttask"
minSdkVersion 15
targetSdkVersion 29
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}

dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
implementation "androidx.cardview:cardview:1.0.0"

testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'

//recycler view
implementation 'androidx.recyclerview:recyclerview:1.1.0'
//retrofit
implementation 'com.squareup.retrofit2:retrofit:2.4.0'
implementation 'com.squareup.retrofit2:converter-gson:2.4.0'
implementation "com.jakewharton.retrofit:retrofit2-rxjava2-adapter:1.0.0"
implementation 'io.reactivex.rxjava2:rxandroid:2.0.1'
//OKHTTP3 library
implementation "com.squareup.okhttp3:okhttp:3.11.0"
implementation "com.squareup.okhttp3:okhttp-urlconnection:3.11.0"
implementation "com.squareup.okhttp3:logging-interceptor:3.11.0"
//import json
implementation 'com.google.code.gson:gson:2.8.2'
//Butterknife
implementation 'com.jakewharton:butterknife:10.0.0'
annotationProcessor 'com.jakewharton:butterknife-compiler:10.0.0'

implementation 'de.hdodenhof:circleimageview:3.0.0'

implementation 'com.github.bumptech.glide:glide:4.10.0'
annotationProcessor 'com.github.bumptech.glide:compiler:4.10.0'

}

最佳答案

您错过了为 Android 设计支持库添加 Material

implementation 'com.google.android.material:material:1.0.0'

关于java - 不能在 AndroidX 中使用 CoordinatorLayout,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59173263/

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