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

错误:(1)错误检索项目的父:没有找到匹配给定名称的资源'android:文本外观。材料。小部件。按钮。逆'[重复的]

郭均
2023-03-14

我的Android Studio工作正常。但是当我试图使用主细节流布局创建一个新项目时,我得到了这些错误。
现在我创建的任何项目都会给我同样的错误。

C:\Users\Lucas\Documents\PopularMovies2\app\build\intermediates\exploded-aar\com.android.support\appcompat-v7\23.1.1\res\values-v23\values-v23.xml
Error:(1) Error retrieving parent for item: No resource found that matches the given name 'android:TextAppearance.Material.Widget.Button.Inverse'.
Error:(1) Error retrieving parent for item: No resource found that matches the given name 'android:Widget.Material.Button.Colored'.

那我该怎么办?

这是Gradle文件:

    apply plugin: 'com.android.application'

android {
    compileSdkVersion 22
    buildToolsVersion "22.0.1"

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

repositories {
    mavenCentral()
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'com.squareup.picasso:picasso:2.5.2'
    compile 'com.android.support:appcompat-v7:23.1.1'
    compile 'com.android.support:support-v4:23.1.1'
}

谢谢。

共有2个答案

方树
2023-03-14

您的问题是您对compileSdkVersion 22进行编译,但是支持库需要版本23作为gradle文件。支持库与sdk版本一起工作。所以v4:23意味着compileSdkVersion 23。因此,在gradle compileSdkVersion 22中改为compileSdkVersion 23

文增
2023-03-14

如果您使用库com.android.support: appcompat-v7:23.1.1com.android.support: support-v4:23.1.1,请尝试使用BuildToolsVersioncompileSdkVersionTarget etSdkVersion=23:

...
compileSdkVersion 23
buildToolsVersion "23.0.1"

defaultConfig {
    applicationId "com.example.lucas.popularmovies2"
    minSdkVersion 10
    targetSdkVersion 23
    versionCode 1
    versionName "1.0"
}
...

此外,您还可以将appcompat版本更改回22.2。1或更少

 类似资料: