选中时如何更改选项卡的颜色,请参见下面的屏幕截图:
我在 ActionBar 中显示橙色,就像我想用橙色代替浅蓝色一样。
为了在 ActionBar 背景中显示橙色,我使用以下代码:
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:android="http://schemas.android.com/apk/res/android">
<style name="Theme.MyAppTheme" parent="android:style/Theme.Holo.Light">
<item name="android:actionBarStyle">@style/Theme.MyAppTheme.ActionBar</item>
</style>
<style name="Theme.MyAppTheme.ActionBar" parent="android:style/Widget.Holo.Light.ActionBar">
<item name="android:background">#FF4444</item>
</style>
</resources>