gpt4 book ai didi

android - @style/Apptheme 和 Style.xml 文件不存在错误

转载 作者:行者123 更新时间:2023-12-04 16:49:23 28 4
gpt4 key购买 nike

当我创建一个 Android 应用程序项目时,我在 (android:theme="@style/AppTheme") 上的 AndroidManifest.xml 中出现错误
找不到与给定名称匹配的资源(在“主题”处,值为“@style/AppTheme”)。
在 (/res/values/) 目录下,只有 strings.xml。

最佳答案

我不确定您是如何开始一个新的 Android 项目的,但可能出了点问题。在您的应用程序文件夹中,您应该有 /res/values/styles.mxl .无需过多介绍,它应该看起来像这样(取自 Using the Material Theme,您还需要支持以前的版本):

<resources>
<!-- inherit from the material theme -->
<style name="AppTheme" parent="android:Theme.Material">
<!-- Main theme colors -->
<!-- your app branding color for the app bar -->
<item name="android:colorPrimary">@color/primary</item>
<!-- darker variant for the status bar and contextual app bars -->
<item name="android:colorPrimaryDark">@color/primary_dark</item>
<!-- theme UI controls like checkboxes and text fields -->
<item name="android:colorAccent">@color/accent</item>
</style>
</resources>

关于android - @style/Apptheme 和 Style.xml 文件不存在错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27548622/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com