【发布时间】:2015-02-27 06:44:03
【问题描述】:
我有一个带有操作栏的活动。 minSdkVersion 为 11。
操作栏是灰色的,我想将其更改为其他颜色,以便与我的应用程序中的其他颜色匹配。
我创建了以下样式
<style name="MyTheme" parent="@android:style/Theme.Holo.Light">
<item name="android:actionBarStyle">@style/MyActionBar</item>
</style>
<style name="MyActionBar" parent="@android:style/Widget.Holo.Light.ActionBar">
<item name="android:background">#FFF</item>
</style>
并在 appmanifest 中将此活动的主题设置为 MyTheme,但是当我运行应用程序时出现此错误:
You need to use a Theme.AppCompat theme (or descendant) with this activity.
我做错了什么?
【问题讨论】:
标签: android