我喜欢全息光主题,但想稍微改变一下颜色。因此,我想将操作栏上的背景从黑色更改为橙色。我该怎么做呢?
问问题
2474 次
1 回答
0
您可以创建可以添加到主题中的自定义样式。
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- the theme applied to the application or activity -->
<style name="MyActivityTheme" parent="@android:style/Theme.Holo.Light">
<item name="android:actionBarStyle">@style/MyActionBar</item>
<!-- other activity and action bar styles here -->
</style>
<!-- style for the action bar backgrounds -->
<style name="MyActionBar" parent="@android:style/Widget.Holo.Light.ActionBar">
<!-- Use a color attribute defined in colors.xml -->
<item name="android:background">@color/orange</item>
<!-- Or use a regular color code (This is orange)-->
<item name="android:background">#F3D3D</item>
</style>
于 2013-07-18T17:53:14.267 回答