我的Android Manifiest
使用-SDK
android:minSdkVersion="8"
android:targetSdkVersion="17"
值-V11: 值-V14:
<!--
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.DarkActionBar">
<!-- API 14 theme customizations can go here. -->
</style>
问题是我在bith values-v14(Styles.xml)上遇到错误 values-v11(styles.xml)我是android的新手。 Thanx提前
答案 0 :(得分:2)
您当前的minSdkVersion为8.将其更改为14+或使用AppCompat支持库。该库还允许您在较低的API中绘制操作。
在内部样式标记中,您必须使用Theme.AppCompat.light
作为父级。