我正在尝试实现谷歌几天前发布的新的ActionBar支持库。在过去,我已经成功地实现了ActionBarSherlock没有任何问题使用相同的方法在谷歌开发人员的支持库设置页面上列出-使用关于如何包括资源的指南(这是类似于ActionBarSherlock是如何做到的)。我把这个库项目作为库加载到我自己的项目中。

我能看出图书馆的资料还不错。当,而不是在我的MainActivity.java上扩展活动,我把它改为扩展ActionBarActivity(根据谷歌的指令),没有发生错误-它正确地导入。

我甚至尝试绕过style.xml文件,添加@style/Theme.AppCompat。光直接在AndroidManifest.xml的<应用>和<活动>与android:theme="@style/ThemeAppCompat。所有的尝试都会导致同样的错误。

现在的问题是我不能让它改变主题,更不用说在不抛出错误的情况下构建了。下面是我收到的错误,后面是我更改为使用新主题的style.xml文件。

我有一定的Android应用程序工作经验,正在运行Eclipse的最新版本的支持库和SDK编译API 18 (Android 4.3)。

生成时收到的错误

获取父项的错误:没有找到匹配给定名称的资源'@style/Theme.AppCompat.Light'。styles.xml /ActBarTest/res/values line 3 Android AAPT Problem

style.xml

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <style name="Theme.ProsoftStudio.ACTest" parent="@style/Theme.AppCompat.Light">
    </style>
</resources>

有什么建议吗?这从来不是ActionBarSherlock的问题。我想使用这个新的支持库。看起来像是.jar在加载,而不是资源。


当前回答

IntelliJ IDEA或Android Studio:

将此添加到app.gradle构建文件中

dependencies {
    compile "com.android.support:appcompat-v7:21.0.+"
} 

取代- v: xx。0+,与你的构建目标,如果你有19个平台 那么它一定是这样的:

dependencies {
    compile "com.android.support:appcompat-v7:19.0.+"
}

其他回答

这是一个问题,可以发生在Android工作室,如果你修改项目结构模块。 在这种情况下,您可能需要再次添加依赖项。在文本编辑器中编辑build。Gradle '文件包含所需的依赖项:

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

这将更新您的“{your_project_name}”。Iml '文件与lib组件:

<orderEntry type="library" exported="" name="appcompat-v7-19.0.1" level="project" />

对于Android Studio或IntelliJ,你所需要做的就是在gradle.build中更新你的依赖。我使用了以下方法:

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

在eclipse中右键单击您的项目->选择构建路径,然后选择配置构建路径。从窗口中选择您想要的jar文件并刷新您的项目

最快的解决方法:

右键点击项目-> Android工具->添加支持库..

如果,像我一样,你在http://developer.android.com/training/basics/actionbar/setting-up.html上的Android教程,并不断得到这个错误,尝试改变所有样式。xml文件中的AppBaseTheme样式。详细:

In file res/values/styles.xml change the line: <style name="AppBaseTheme" parent="android:Theme.Light"> to: <style name="AppBaseTheme" parent="@style/Theme.AppCompat.Light"> In file res/values-v11/styles.xml change the line: <style name="AppBaseTheme" parent="android:Theme.Holo.Light"> to: <style name="AppBaseTheme" parent="@style/Theme.AppCompat.Light"> In file res/values-v14/styles.xml change the line: <style name="AppBaseTheme" parent="android:Theme.Holo.Light.DarkActionBar"> to: <style name="AppBaseTheme" parent="@style/Theme.AppCompat.Light.DarkActionBar">

现在应用程序应该可以正常运行了。