Android Studio v7-少数类导入错误(无法解析符号)

时间:2015-10-12 10:31:29

标签: java android

我是Android编程的初学者。我正在尝试使用Android Studio创建一个基本的Hello World应用程序。在按照创建Hello World程序的初始步骤后,我立即在Java文件中遇到以下错误。

"Cannot resolve Symbol FloatingActionButton"
"Cannot resolve Symbol Snackbar"
"Cannot resolve Symbol AppCompatActivity"
"Cannot resolve Symbol Toolbar"

正如您在附件Image中看到的那样,错误是红色的。 请帮帮我。

我的构建文件内容:

 defaultConfig {
        applicationId "com.example.helloworld.helloworld"
        minSdkVersion 15
        targetSdkVersion 23
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    testCompile 'junit:junit:4.12'
    compile 'com.android.support:design:23.0.1'
    compile 'com.android.support:appcompat-v7:23.0.1'
    compile 'com.android.support:design:23.0.1'
}

似乎我添加了所有相关的依赖项。

6 个答案:

答案 0 :(得分:7)

在将包含空白活动的新模块插入现有项目后,我遇到了同样的问题。

我的模块的build.gradle文件看起来像这样:

apply plugin: 'com.android.application'

android {
    compileSdkVersion 23
    buildToolsVersion "23.0.1"

    defaultConfig {
        applicationId "com.example.networkingtest"
        minSdkVersion 17
        targetSdkVersion 23
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    testCompile 'junit:junit:4.12'
    compile 'com.android.support:appcompat-v7:23.1.0'
    compile 'com.android.support:design:23.1.0'
}

要解决此问题,我将appcompat和设计依赖项的版本从23.1.0更改为23.0.1(注意:这与buildToolsVersion中的版本相同)。接下来,我点击"使用gradle文件同步项目"然后是Build>清洁项目。完成后项目将运行,但我将依赖版本更改回23.1.0,点击"使用gradle文件同步项目"然后是Build>再次清理项目。现在一切正常。

答案 1 :(得分:3)

compile 'com.android.support:design:25.3.1'

中加入build.gradle(Module:app)

更改版本25.3.1以匹配您的compile 'com.android.support:appcompat-v7:25.3.1'依赖关系

在活动中导入import android.support.design.widget.FloatingActionButton;

答案 2 :(得分:1)

您是否同步了项目?

enter image description here

同时尝试删除所有" red"导入并重新导入此类。

答案 3 :(得分:1)

当我创建一个空活动的项目时,我遇到了同样的问题,并进一步添加了第二个活动类型为Blank活动。

让我离开的步骤是 1-Build->清洁项目 使用Gradle文件进行2同步项目

使用minSDKVersion 17在Android Studio 1.5.1上尝试过。

答案 4 :(得分:1)

添加支持:在build.gradle:module app中设计依赖项,这将解决它

compile 'com.android.support:design:26.+'

答案 5 :(得分:0)

had the same problem. try to insert

compile 'com.android.support:support-v4:25.2.0' compile 'com.android.support:design:25.2.0'

at the end of you buidl.gradle file.