@ style / Apptheme和Style.xml文件上的错误不存在

时间:2014-12-18 14:16:35

标签: android

当我创建Android应用程序项目时,我在AndroidManifest.xml上遇到错误(android:theme =" @ style / AppTheme") 找不到与给定名称匹配的资源('主题'有价值' @ style / AppTheme')。 在(/ res / values /)库中,只有strings.xml。

1 个答案:

答案 0 :(得分:0)

我不确定你是如何开始一个新的Android项目的,但有些事情可能会出错。在您的app文件夹中,您应该有/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>