我想更改標題欄的顏色。我試過這個:更改顏色標題欄
<style name="AppTheme" parent="AppBaseTheme">
<!-- All customizations that are NOT specific to a particular API-level can go here. -->
<item name="android:actionBarStyle">@style/ColorBar</item>
</style>
<style name="ColorBar" parent="@android:style/Widget.Holo.Light.ActionBar">
<item name="android:background">@color/white</item>
<item name="android:textColor">@color/orange</item>
</style>
但它不起作用。我上面顯示的代碼有什麼問題?
編輯:這是我想改變文本的顏色,沒有背景(它運行在後臺)
我不能在XML中做到這一點?這是沒用的,做它在每一個活動:( – deveLost