为什么在我的项目中找不到CoordinatorLayout

时间:2018-10-15 14:55:25

标签: android android-studio android-gradle android-coordinatorlayout

在这里发布之前,我进行了很多搜索,但找不到解决方法。

为什么在我的项目中找不到CoordinatorLayout?

屏幕截图

enter image description here

gradle

apply plugin: 'com.android.application'

android {
    compileSdkVersion 27
    defaultConfig {
        applicationId "com.salah250.forvo"
        minSdkVersion 17
        targetSdkVersion 27
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'com.android.support:appcompat-v7:27.1.1'
    implementation 'com.android.support.constraint:constraint-layout:1.1.3'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.android.support.test:runner:1.0.2'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'com.android.support:appcompat-v7:27.1.1'
    implementation 'com.android.support.constraint:constraint-layout:1.1.3'
    implementation 'com.android.support:support-v4:27.1.1'
    implementation 'com.android.support:support-vector-drawable:27.1.1'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.android.support.test:runner:1.0.2'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
    //Material Design
    implementation 'com.android.support:design:27.1.1'
    //Retrofit
    implementation 'com.squareup.retrofit2:retrofit:2.4.0'
    implementation 'com.squareup.retrofit2:converter-gson:2.4.0'
    //GSON
    implementation 'com.google.code.gson:gson:2.8.5'
    //Event Bus
    implementation 'org.greenrobot:eventbus:3.1.1'
    //Picasso
    implementation 'com.squareup.picasso:picasso:2.71828'
    //Butter knife
    implementation 'com.jakewharton:butterknife:8.8.1'
    annotationProcessor 'com.jakewharton:butterknife-compiler:8.8.1'
    //Circle Image
    implementation 'de.hdodenhof:circleimageview:2.2.0'
}

我希望找到解决这个问题的方法............

3 个答案:

答案 0 :(得分:0)

设置AndroidX有一些先决条件。您可以在文档的Using AndroidX部分以及Migrate an existing project using Android Studio中找到其中的一些。

从您提供的摘录中,我可以注意到的第一件事也是唯一一件事,您尚未将compileSdkVersion设置为28,但是请检查我为您提供的链接。可能还有更多。

答案 1 :(得分:0)

如果您检查了依存关系(com.android.support:appcompat-v7:27.1.1)并在布局中以以下内容开头: androidx.coordinatorlayout ,这表示您仍在使用支持库依存关系,但您尝试使用AndroidX CoordinatorLayout

使用Migrate to AndroidX中的Refactor或使用支持库CoordinatorLayout

<android.support.design.widget.CoordinatorLayout>
</android.support.design.widget.CoordinatorLayout>

阅读: https://developer.android.com/jetpack/androidx/migrate

答案 2 :(得分:-1)

只需将这两行放在gradle.properties -file中

android.useAndroidX=true
android.enableJetifier=true

进行gradle同步,您就可以设置好:)