这个问题已经在堆栈溢出时问过了,但对我没有用。
我只想像 facebook 应用程序一样更改我的操作栏颜色,顶部操作为蓝色,其余部分为白色背景颜色。
我尝试在堆栈溢出中使用帖子,但是,它将我的完整活动颜色更改为白色,而不仅仅是操作栏。
这是我的 style.xml 和
<style name="CustomActivityTheme" parent="@android:style/Theme.Holo">
<item name="android:actionBarTabStyle">@color/blue_base</item>
<!-- other activity and action bar styles here -->
</style>
清单.xml
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/CustomActivityTheme">
谢谢。