我正在对我的应用程序进行简单的自定义,我想在其中向操作栏添加自定义背景颜色。styles-v14
这是我在文件夹中的 styles.xml 。(我的应用程序仅针对 SDK 14 及更高版本)。
如果我只是取消注释这一行并运行我的应用程序,整个屏幕除了状态栏变成白色,而我希望操作栏背景颜色是不同的颜色。
<!-- <item name="android:actionBarStyle">@style/WindowTitleBackground</item> -->
知道出了什么问题。这是我的应用清单:
<application
android:name=".App"
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
样式.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="AppTheme" parent="@android:style/Theme.Holo.Light.DarkActionBar">
<item name="android:listChoiceIndicatorSingle">@drawable/btn_radio_holo_light</item>
<!-- <item name="android:actionBarStyle">@style/WindowTitleBackground</item> -->
</style>
<style name="RadioButtonAppTheme" parent="android:Widget.CompoundButton.RadioButton">
<item name="android:button">@drawable/btn_radio_holo_light</item>
</style>
<style name="WindowTitleBackground">
<item name="android:background">@color/titlebackgroundcolor</item>
</style>
</resources>