我在res / values / themes.xml中声明了一个主题:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="CustomActionBarTheme"
parent="@style/Theme.Holo.Light.DarkActionBar">
<item name="android:actionBarStyle">@style/MyActionBar</item>
</style>
</resources>
然后我通过在清单中添加以下行来在我的一个活动中应用主题:
android:theme="@style/CustomActionBarTheme"
然后我在themes.xml中收到错误,说:“错误:检索项目的父项时出错:找不到与给定名称匹配的资源'@ style / Theme.Holo.Light.DarkActionBar”。“
清单中的其他信息:
android:minSdkVersion="13"
android:targetSdkVersion="18"
我确实清理了这个项目。 可能是什么问题?
答案 0 :(得分:2)
应该是:
parent="@android:style/Theme.Holo.Light.DarkActionBar"
和不:
parent="@style/Theme.Holo.Light.DarkActionBar"