我已經查看了Android在線示例,並通過所有可用文檔進行了詳細閱讀,但我仍然很困惑。我將Android SDK的版本19作爲minSDK。我需要做的就是更改操作欄的背景顏色。我的代碼出於某種原因似乎不起作用。更改操作欄的顏色
- 我希望應用程序其餘部分的窗口背景顏色爲白色。
- 我希望操作欄的背景爲藍色。
下面是我的資源文件:
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light">
<item name="android:windowBackground">@android:color/white</item>
<item name="android:actionBarStyle">@style/post_action_bar</item>
</style>
<style name="post_action_bar" parent="@android:style/Widget.Holo.Light.ActionBar">
<item name="android:background">@android:color/holo_blue_dark</item>
<item name="android:backgroundStacked">@android:color/holo_blue_dark</item>
<item name="android:backgroundSplit">@android:color/holo_blue_dark</item>
<item name="android:windowActionBar">true</item>
<item name="android:windowNoTitle">false</item>
</style>
</resources>
這是行不通的。該應用程序的其餘部分是白色的,但我的酒吧有一個灰色的顏色。
我想正是在鏈接說 - 我相信。看看我的資源代碼。 –