【发布时间】:2015-11-26 15:49:09
【问题描述】:
平台:4.3
API 级别:18
AndroidManifest.xml:
<uses-sdk
android:minSdkVersion="18"
android:targetSdkVersion="18" />
values-v14\styles.xml:
<resources>
<!--
Base application theme for API 14+. This theme completely replaces
AppBaseTheme from BOTH res/values/styles.xml and
res/values-v11/styles.xml on API 14+ devices.
-->
<style name="AppBaseTheme" parent="android:Theme.Holo.Light">
</style>
<style name="CustomActionBarTheme"
parent="@style/Theme.Holo.Light.DarkActionBar">
<item name="android:actionBarStyle">@style/MyActionBar</item>
</style>
<style name="MyActionBar"
parent="@style/Widget.Holo.Light.ActionBar.Solid.Inverse">
<item name="android:background">@drawable/actionbar_background</item>
</style>
我是安卓新手。非常感谢!
【问题讨论】:
-
更改为“@android:style/Theme.Holo.Light.DarkActionBar”和“@android:style/Widget.Holo.Light.ActionBar.Solid.Inverse”
标签: android