关于minSdkVersion="8" 升级后,又不想用 appcompat_v7包,
那么appcompat_v7主题"Theme.AppCompat.Light"等不存在,,会产生编译错误,
方案: 找到 高级版本 对应 的主题就可.
下面以升级 到14为例.
原来作用 Theme.AppCompat.Light 的替换成@android:style/Theme.Holo.Light就可.
<!-- <style name="AppBaseTheme" parent="Theme.AppCompat.Light"> API 11 theme customizations can go here. </style> --> <style name="AppBaseTheme" parent="@android:style/Theme.Holo.Light"> <!-- API 14 theme customizations can go here. --> </style>
原来 Theme.AppCompat.Light.DarkActionBar替换成@android:style/Theme.Holo.Light.DarkActionBar
<!-- <style name="AppBaseTheme" parent="Theme.AppCompat.Light.DarkActionBar"> API 14 theme customizations can go here. </style> --> <style name="AppBaseTheme" parent="@android:style/Theme.Holo.Light.DarkActionBar"> <!-- API 14 theme customizations can go here. --> </style>
其它类似.
时间: 2024-10-25 13:47:52