我刚刚创建了一个 Android 项目(为简单起见,针对 4.0 及更高版本),如何更改操作栏的背景颜色?
我是 Android 的初学者,我对最简单的事情感到困惑。我已经阅读了类似问题的答案,但它们并不适用,我什至无法解释原因。我已阅读https://developer.android.com/training/basics/actionbar/styling.html并提到了一个名为 res/values/themes.xml 的文件,当我创建项目时该文件不存在,所以它没用大部头书。
我知道这绝对是初学者的东西,但我已经想放弃了。请告诉我我应该在哪里更改 Android 操作栏上的不同背景颜色。我知道我需要在 res/values/styles.xml 中创建自定义操作栏样式,但我不知道作为该样式的父级要放入什么,我尝试的所有操作都会出错。
这是使用新 Android 项目生成的 res/values/styles.xml
<resources>
<!--
Base application theme, dependent on API level. This theme is replaced
by AppBaseTheme from res/values-vXX/styles.xml on newer devices.
-->
<style name="AppBaseTheme" parent="android:Theme.Light">
<!--
Theme customizations available in newer API levels can go in
res/values-vXX/styles.xml, while customizations related to
backward-compatibility can go here.
-->
</style>
<!-- Application theme. -->
<style name="AppTheme" parent="AppBaseTheme">
<!-- All customizations that are NOT specific to a particular API-level can go here. -->
</style>
</resources>