我的应用主题在预览中更改,但在模拟器中没有

时间:2015-08-21 19:04:57

标签: java android

每当我尝试更改我的应用主题时,它会在预览中发生变化,但在模拟器中始终保持不变。为什么是这样?

这是我的style.xml:

<resources>
    <!-- the theme applied to the application or activity -->
    <style name="CustomActionBarTheme"
        parent="@android:style/Theme.Holo.Light">
        <item name="android:actionBarStyle">@style/MyActionBar</item>
    </style>

    <!-- ActionBar styles -->
<style name="MyActionBar"
parent="@android:style/Widget.Holo.Light.ActionBar.Solid.Inverse">
<item name="android:background">@color/colorPrimary</item>
    <item name="android:statusBarColor">@color/colorPrimaryDark</item>
</style>
    </resources>

0 个答案:

没有答案