当前位置: 首页 > 知识库问答 >
问题:

Android studio检索项的父项时出错:未找到与给定名称“Theme.AppCompat.Light.DarkActionBar”匹配的资源

宿楚青
2023-03-14

错误:任务“:app:processDebugResources”执行失败。>com.android.ide.common.Process.processException:org.gradle.Process.internal.execexception:Process“command”e:\program files\android\sdk\build-tools\22.0.1\aapt.exe“已完成,退出值为非零1

这是我的建筑Gradle

apply plugin: 'com.android.application'
android {
    compileSdkVersion 22
    buildToolsVersion '22.0.1'

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

现在该怎么做才能运行我的程序没有错误,请帮帮我........

共有1个答案

厉钊
2023-03-14

主题“theme.AppCompat.Light.DarkActionBar”在模块“com.android.support:AppCompat-V7”中声明

所以你的房子里需要这样的东西。

dependencies {
    compile 'com.android.support:appcompat-v7:22.1.1'
}

或者,您可以使用“theme.holo.light.darkActionBar”代替,这是较新的android版本的一部分,不需要额外的模块。

 类似资料: