当前位置: 首页 > 知识库问答 >
问题:

找不到与给定名称“@style/theme.holo.light.darkActionBar”匹配的资源

巫马庆
2023-03-14

平台:4.3

<uses-sdk
    android:minSdkVersion="18"
    android:targetSdkVersion="18" />
  <resources>

<!--
    Base application theme for API 14+. This theme completely replaces
    AppBaseTheme from BOTH res/values/styles.xml and
    res/values-v11/styles.xml on API 14+ devices.
-->
<style name="AppBaseTheme" parent="android:Theme.Holo.Light">
</style>

 <style name="CustomActionBarTheme"
       parent="@style/Theme.Holo.Light.DarkActionBar">
    <item name="android:actionBarStyle">@style/MyActionBar</item>
</style>

<style name="MyActionBar"
       parent="@style/Widget.Holo.Light.ActionBar.Solid.Inverse">
    <item name="android:background">@drawable/actionbar_background</item>
</style>

我是一个Android新手,非常感谢!

共有1个答案

苏昂雄
2023-03-14

执行以下操作:

"android:style/Theme.Holo.Light.DarkActionBar"

您错过了样式前的android关键字。这表明它是Android的内置样式。

 类似资料: