Theme.AppCompat.Light.DarkActionBar - 未找到资源

2022-09-03 00:54:08

如何正确使用Android支持库,因为我的清单文件中有此错误:

android:theme="@style/Theme.AppCompat.Light.DarkActionBar"

error: Error: No resource found that matches the given name 
(at 'theme' with value '@style/Theme.AppCompat.Light.DarkActionBar').
AndroidManifest.xml /ttab   line 39 Android AAPT Problem

我的朋友以前在其他计算机上为我完成了这个实现,现在我必须独自完成。请帮帮我:)

我正在使用 ADT

我的风格.xml:

<resources>

    <!--
        Base application theme, dependent on API level. This theme is replaced
        by AppBaseTheme from res/values-vXX/styles.xml on newer devices.
    -->
    <style name="AppBaseTheme" parent="android:Theme.Light">
        <!--
            Theme customizations available in newer API levels can go in
            res/values-vXX/styles.xml, while customizations related to
            backward-compatibility can go here.
        -->
    </style>

    <!-- Application theme. -->
    <style name="AppTheme" parent="AppBaseTheme">
        <!-- All customizations that are NOT specific to a particular API-level can go here. -->
    </style>

    <style name="Theme.AppCompat.Light">
     <!-- theme customizations here. -->
    </style>


    <style name="Theme.AppCompat.Light.DarkActionBar" parent="Theme.AppCompat.Light">
      <!-- theme customizations here. -->
    </style>


</resources>

答案 1

在“android-support-v7-appcompat”项目中:

  • 从包资源管理器中删除“android-support-v7-appcompat”。
  • 再次导入并选中“复制到工作区”
  • 在属性 ->项目构建目标中的 Android -> 中,取消选中 Android 2.2 并选中 Android 4.1.2
  • 在 Java 构建路径中,取消选中是否有任何.jar库,并取消选中依赖项

换句话说,使用“android-support-v7-appcompat”的项目:

  • 在属性 -> Android 中添加库,但取消选中“是库”。
  • 在 Android -> Project 中构建 tarjet 检查 Android 4.0。
  • 在“Java构建路径”中 - >排序和导出 - >取消选中.jar库
  • 最后做一个“项目->清理”两个项目

答案 2

如果您使用的是 Gradle,则表示最新版本的兼容性库存在问题。

如果您的文件中有以下内容,并且末尾有 a:build.gradle'+'

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

然后它可能正在获取比您想要的更高版本的库。

将依赖项更改为:

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

可能会解决您的问题。


推荐