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

时间:2015-07-24 05:32:13

标签: android xml android-actionbar r.java-file

我正在设计动作栏。我试图改变主动作栏的颜色。我在style.xml中编写了一个样式。直到我的项目工作正常。在我在xml文件中声明我的风格后,R.Java自杀了。 以下是我编写的xml代码。我曾尝试过本网站提供的所有解决方案。他们都没有为我工作。

<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>

有人帮助我

谢谢:)

1 个答案:

答案 0 :(得分:6)

您的颜色未正确宣布。

更改

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

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