如何更改操作栏文本和背景属性?(How to change the Action bar text

2019-09-22 07:21发布

这里是我的操作栏样式。 我想更改文本和背景属性。 但更改没有被应用到应用程序。 我在哪里犯错?

这是我的style.xml

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

<style name="MyActionBar" parent="@android:style/Widget.Holo.Light.ActionBar">
<item name="android:windowBackground">@color/white</item>
<item name="android:background">@color/white</item>
<item name="android:drawableBottom">@color/actionbar_title_color</item>
<item name="android:textSize">@dimen/actionbar_text_size</item>
<item name="android:textColor">@color/black</item>    
</style>

Answer 1:

有效。 这是我的错误。 我正在改变中的值文件夹的样式。 由于我对ICS的工作,我就要值14的文件夹已经改变了它。



文章来源: How to change the Action bar text and background properties?