R.Java 操作栏样式更改后未生成

R.Java not generated after actionbar style changes

我正在设计操作栏。我试图更改主操作栏的颜色。我在 style.xml 写了一个样式。到那时我的项目运行良好。在我在 xml 文件中声明我的风格后 R.Java 自杀了。 以下是我写的 xml 代码。我已经尝试了本网站提供的所有解决方案。 None 其中对我有用。

<resources> 
    <style name="MyCustomTheme" parent="Theme.AppCompat.Light">
        <item name="android:actionBarStyle">@style/MyActionBarTheme</item>
    </style>

    <style name="MyActionBarTheme" parent="Widget.AppCompat.Light.ActionBar">
        <item name="android:background">F757575</item>
    </style>
</resources>

有人帮帮我

谢谢:)

您的颜色没有正确声明。

改变

<item name="android:background">F757575</item>

<item name="android:background">#FF757575</item>