如何修复Android Studio中的“无法解决符号”v7“错误

我正在尝试使用android支持recyclerView小部件,尽管我已经将所有依赖项添加到我的build.gradle文件中(我认为),但我的活动中的行“import android.support.v7.widget.RecyclerView;”没有解析。我是Android Studio的新手,所以我可能错过了一些非常基本的东西。


到目前为止,我已经尝试在项目构建级别的所有项目中添加Google存储库,以及我的模块构建级别。我还改变了我的依赖关系,并尝试更改版本号。我尝试使缓存无效并重新启动。我似乎能够导入“import androidx.recyclerview.widget.RecyclerView;”,但这与我听到的不一样。


这是我的构建 gradle 文件:


//noinspection GradleCompatible

apply plugin: 'com.android.application'

android {

    compileSdkVersion 28

    buildToolsVersion '28.0.3'

    defaultConfig {

        applicationId "com.example.chaos"

        minSdkVersion 20

        targetSdkVersion 28

        versionCode 1

        versionName "1.0"

        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"

    }

    buildTypes {

        customDebugType {

            debuggable true

        }

        release {

            minifyEnabled false

            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'

        }

    }

}


dependencies {

    implementation fileTree(dir: 'libs', include: ['*.jar'])

    implementation 'com.android.support:appcompat-v7:28.0.0'

    implementation 'androidx.constraintlayout:constraintlayout:1.1.3'

    implementation 'com.android.support:design:28.0.0'

    //implementation 'com.android.support:recyclerview-v7:28.0.0'


    implementation 'android.arch.persistence.room:runtime:1.1.1'

    annotationProcessor 'android.arch.persistence.room:compiler:1.1.1'

    androidTestImplementation 'android.arch.persistence.room:testing:1.1.1'


   // implementation 'com.android.support:support-v7'


    testImplementation 'junit:junit:4.12'

    androidTestImplementation 'androidx.test:runner:1.1.2-alpha02'

    androidTestImplementation ('androidx.test.espresso:espresso-core:3.2.0-alpha02', {

        exclude group: 'com.android.support', module: 'support-annotations'

    })

}

这就是我在主要活动中尝试的导入。似乎我可以导入android.support.v4库,但v7甚至不是一个自动完成选项。我很感激的帮助!


import android.support.v7.app.AppCompatActivity;

import android.support.v7.widget.RecyclerView;

我希望导入行能够解析,因为它目前还没有。


翻过高山走不出你
浏览 160回答 1
1回答

ITMISS

如果您使用的是 Android X,请尝试此依赖项implementation 'androidx.recyclerview:recyclerview:1.0.0'
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Java