Theme.AppCompat.Light.DarkActionBar无法解析符号

时间:2017-04-09 07:25:42

标签: android android-studio android-gradle android-appcompat

Android Studio突出显示了这一点     Theme.AppCompat.Light.DarkActionBar 无法解析符号

我的Android Studio版本为2.2,Gradle版本为3.3我安装了最新的Android支持存储库(47.0.0)。我正在使用的app-compat-v7:25.3.1库可以在SDK文件夹中找到。

请帮助解决此问题。

我的build.grade文件是:     apply plugin:'com.android.application'

android {
    compileSdkVersion 25
    buildToolsVersion "25.0.2"
    defaultConfig {
        applicationId "com.example.app"
        minSdkVersion 15
        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 'com.toptoche.searchablespinner:searchablespinnerlibrary:1.3.1'
    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.3.1'
    compile 'com.android.support.constraint:constraint-layout:1.0.2'
    compile 'com.android.support:design:25.3.1'
    testCompile 'junit:junit:4.12'
}

我的styles.xml是:

<resources>

    <!-- Base application theme. -->
    <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
        <!-- Customize your theme here. -->
        <item name="colorPrimary">@color/colorPrimary</item>
        <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
        <item name="colorAccent">@color/colorAccent</item>

    </style>
    <style name="AppTheme.AppBarOverlay" parent="ThemeOverlay.AppCompat.Dark.ActionBar" />

    <style name="AppTheme.PopupOverlay" parent="ThemeOverlay.AppCompat.Light" />
</resources>

1 个答案:

答案 0 :(得分:0)

当我尝试在我的风格上使用ThemeOverlay.AppCompat.Dark.ActionBar时,我遇到了运行Kotlin的同样问题。只有当我将 minSdkVersion表格15改为17 时,我才能修复它。如果没有这个改变,Gradle会进行无限循环。感谢。

我正在与: Android Studio 3.0.1 Build#AI-171.4443003,建于2017年11月9日 JRE:1.8.0_152-release-915-b01 amd64 JVM:JetBrains s.r.o的OpenJDK 64位服务器VM Windows 10 10.0