这很奇怪。 我正在尝试使用主题更改ActionBar的颜色。 这是我在values.xml中的styles.xml代码:
<resources>
<!--
Base application theme, dependent on API level. This theme is replaced
by AppBaseTheme from res/values-vXX/styles.xml on newer devices.
-->
<style name="AppBaseTheme" parent="android:Theme.Holo.Light">
<!--
Theme customizations available in newer API levels can go in
res/values-vXX/styles.xml, while customizations related to
backward-compatibility can go here.
-->
<item name="android:actionBarStyle">@style/TheActionBarTheme</item>
</style>
<!-- Application theme. -->
<style name="AppTheme" parent="AppBaseTheme">
<!-- All customizations that are NOT specific to a particular API-level can go here. -->
</style>
<style name="TheActionBarTheme" parent="@android:style/Widget.Holo.Light.ActionBar">
<item name="android:background">#1f1f2f</item>
</style>
</resources>
对于values-14中的styles.xml:
<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">
<!-- API 14 theme customizations can go here. -->
<item name="android:actionBarStyle">@style/TheActionBarTheme</item>
</style>
<style name="TheActionBarTheme" parent="@android:style/Widget.Holo.Light.ActionBar">
<item name="android:background">#1f1f2f</item>
</style>
</resources>
我使用requestWindowFeature(Window.FEATURE_ACTION_BAR);在MainActivity中
但ActionBar的颜色并没有改变 - 它是标准的。我在哪里搞砸了?
答案 0 :(得分:0)
我遇到了你的问题,我正在分享一个xml样式代码给你检查。
<style name="AppTheme1" parent="Theme.AppCompat.Light.DarkActionBar">
<item name="colorPrimary">#693EB4</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>
在这个代码示例中,我为style.xml中的操作栏创建了一个新样式,在此colorPrimary
是小顶栏(StatusBar)颜色,而colorPrimary
dark是ActionBar的颜色,所以你需要改变这种颜色。
父值是您想要的操作栏主题的类型。