嘿伙计们,我是 Android 开发的新手,我有一个关于我正在从事的项目的问题:
使用这些样式来设置我的样式actionbar
:
<resources>
<!-- the theme applied to the application or activity -->
<style name="CustomActionBarTheme"
parent="@style/Theme.Holo.Light.DarkActionBar">
<item name="android:actionBarStyle">@style/MyActionBar</item>
</style>
<!-- ActionBar styles -->
<style name="MyActionBar"
parent="@style/Widget.Holo.Light.ActionBar.Solid.Inverse">
<item name="android:background">@drawable/actionbar_background</item>
</style>
</resources>
我得到了两种风格的错误,他们说:
error: Error retrieving parent for item: No resource found that matches the given name '@style/
Theme.Holo.Light.DarkActionBar'.
error: Error retrieving parent for item: No resource found that matches the given name '@style/
Widget.Holo.Light.ActionBar.Solid.Inverse'.
我将它们放在一个XML
名为主题的单独文件中。在我的样式XML
文件中,我有主题android:Theme.Light
如果您能给我一个建议或其他关于这里有什么问题的建议,我将不胜感激!
大卫