好的,按照Googles开发人员指南,我已尝试(并且失败)更改已实施的操作栏的颜色。我目前正在使用Android Studio而不是eclipse,并且已经将所有内容更新到最近发布的版本。
我基本上试图将操作栏的颜色更改为除默认值" light"之外的任何颜色。颜色。
这里有一些可爱的代码。
值/ styles.xml
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light">
</style>
</resources>
值-V21 / styles.xml
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="AppTheme" parent="Theme.AppCompat.Light">
<item name="android:actionBarStyle">@style/MyActionBar</item>
</style>
<style name="MyActionBar" parent="Widget.AppCompat.Light.ActionBar">
<item name="android:background">#ff0000</item>
</style>
</resources>
任何帮助表示感谢。
答案 0 :(得分:0)
如果需要,您可以通过编码来尝试
{{1}}