当试图在我的项目中使用最新的appcompat-v7支持库时,我得到以下错误:

/Users/greg/dev/mobile/android_project/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/21.0.0/res/values-v11/values.xml
Error:(36, 21) No resource found that matches the given name: attr 'android:actionModeShareDrawable'.
Error:(36, 21) No resource found that matches the given name: attr 'android:actionModeShareDrawable'.
Error:(36, 21) No resource found that matches the given name: attr 'android:actionModeShareDrawable'.
Error:(36, 21) No resource found that matches the given name: attr 'android:actionModeShareDrawable'.

我怎么解决这个问题?


当前回答

虽然loeschg的答案是绝对正确的,但我只是想详细说明它,并为所有IDE (Eclipse, IntellJ和Android Studio)提供一个解决方案,即使错误略有区别。


Prerequirements

确保您已经通过SDK- manager下载了最新的额外功能以及Android 5.0 SDK。


Android工作室

打开构建。你的app-module的build.gradle.kts文件,并将compileSdkVersion更改为21。基本上没有必要将targetSdkVersion SDK-Version更改为21,但建议这样做,因为您应该始终以最新的android Build-Version为目标。 最后你的gradle-file会是这样的:

android {
    compileSdkVersion(21)
    // ...

    defaultConfig {
        // ...
        targetSdkVersion(21)
    }
}

之后一定要同步你的项目。


Eclipse

在Eclipse中使用v7-appcompat时,必须将其作为库项目使用。仅仅将*.jar复制到/libs文件夹是不够的。为了了解如何正确地导入项目,请阅读developer.android.com上的(点击)分步教程。

一旦项目被导入,你会发现/resfolder中的一些文件夹被红下划线标注,原因如下:

error: Error retrieving parent for item: No resource found that matches the given name 'android:TextAppearance.Material'.
error: Error retrieving parent for item: No resource found that matches the given name 'android:Widget.Material.*'
error: Error: No resource found that matches the given name: attr 'android:actionModeShareDrawable'.

解决方案

你唯一要做的就是打开这个项目。“android-support-v7-appcompat”属性文件,将target从“target=android-19”修改为“target=android-21”。 然后做一个项目——>清洁…这样更改才会生效。


IntelliJ IDEA(不使用Gradle)

与Eclipse类似,仅使用android-support-v7- appcompatat .jar是不够的;您必须将appcompat作为模块导入。在这个StackO-Post上阅读更多信息(点击)。 (注意:如果你只使用。jar,你会在运行时得到NoClassDefFoundErrors)

当你试图构建项目时,你会在res/values-v**文件夹中遇到问题。您的消息窗口将显示如下内容:

Error:android-apt-compiler: [appcompat]  resource found that matches the given name: attr 'android:colorPrimary'.
Error:(75, -1) android-apt-compiler: [appcompat] C:\[Your Path]\sdk\extras\android\support\v7\appcompat\res\values-v21\styles_base.xml:75: error: Error retrieving parent for item: No resource found that matches the given name 'android:Widget.Material.ActionButton'.
// and so on

解决方案

右键单击appcompat模块—>打开模块设置(F4)—>[依赖选项卡]从下拉菜单中选择Android API 21平台—>应用

然后重建项目(Build—> rebuild project),你就可以开始了。

其他回答

我在工作空间中添加了另一个项目,并试图在清单文件中引用它的一个活动,但我得到了这个错误。问题是我没有正确地引用库。下面是我解决问题的方法:

右键单击项目 选择属性 点击左边菜单上的Android 点击添加 请选择一个图书馆计划

jar进入Android Dependencies文件夹,这个错误已经修复。

“遵循以下步骤:

这对我很有用。为了解决这个问题,

1.右键单击appcompat_v7库并选择属性

2.现在,点击Android选项, 将项目构建路径设置为Android 5.0 (API级别21) 应用更改。

3.现在进入项目。appcompat_v7库下的属性文件,

4.设置项目目标为:target=android-21

5.现在Clean + Build appcompat_v7库和你的项目

我在游戏服务5.0.89中遇到过这个问题。升级到6.1.11解决了这个问题。

这可能是因为在构建中还没有将compileSdkVersion设置为21。gradle文件。您可能还想将targetSdkVersion更改为21。

android {
    //...
    compileSdkVersion 21

    defaultConfig {
        targetSdkVersion 21
    }
    //...
}

这要求您首先下载了最新的SDK更新。

一旦你下载了所有的更新(别忘了也更新Android支持库/存储库!),更新了你的compileSdkVersion,重新同步你的Gradle项目。

编辑:适用于Eclipse或一般IntelliJ用户

请看reVerse的回答。他走得很彻底!

虽然loeschg的答案是绝对正确的,但我只是想详细说明它,并为所有IDE (Eclipse, IntellJ和Android Studio)提供一个解决方案,即使错误略有区别。


Prerequirements

确保您已经通过SDK- manager下载了最新的额外功能以及Android 5.0 SDK。


Android工作室

打开构建。你的app-module的build.gradle.kts文件,并将compileSdkVersion更改为21。基本上没有必要将targetSdkVersion SDK-Version更改为21,但建议这样做,因为您应该始终以最新的android Build-Version为目标。 最后你的gradle-file会是这样的:

android {
    compileSdkVersion(21)
    // ...

    defaultConfig {
        // ...
        targetSdkVersion(21)
    }
}

之后一定要同步你的项目。


Eclipse

在Eclipse中使用v7-appcompat时,必须将其作为库项目使用。仅仅将*.jar复制到/libs文件夹是不够的。为了了解如何正确地导入项目,请阅读developer.android.com上的(点击)分步教程。

一旦项目被导入,你会发现/resfolder中的一些文件夹被红下划线标注,原因如下:

error: Error retrieving parent for item: No resource found that matches the given name 'android:TextAppearance.Material'.
error: Error retrieving parent for item: No resource found that matches the given name 'android:Widget.Material.*'
error: Error: No resource found that matches the given name: attr 'android:actionModeShareDrawable'.

解决方案

你唯一要做的就是打开这个项目。“android-support-v7-appcompat”属性文件,将target从“target=android-19”修改为“target=android-21”。 然后做一个项目——>清洁…这样更改才会生效。


IntelliJ IDEA(不使用Gradle)

与Eclipse类似,仅使用android-support-v7- appcompatat .jar是不够的;您必须将appcompat作为模块导入。在这个StackO-Post上阅读更多信息(点击)。 (注意:如果你只使用。jar,你会在运行时得到NoClassDefFoundErrors)

当你试图构建项目时,你会在res/values-v**文件夹中遇到问题。您的消息窗口将显示如下内容:

Error:android-apt-compiler: [appcompat]  resource found that matches the given name: attr 'android:colorPrimary'.
Error:(75, -1) android-apt-compiler: [appcompat] C:\[Your Path]\sdk\extras\android\support\v7\appcompat\res\values-v21\styles_base.xml:75: error: Error retrieving parent for item: No resource found that matches the given name 'android:Widget.Material.ActionButton'.
// and so on

解决方案

右键单击appcompat模块—>打开模块设置(F4)—>[依赖选项卡]从下拉菜单中选择Android API 21平台—>应用

然后重建项目(Build—> rebuild project),你就可以开始了。