报如下错误:android.util.AndroidRuntimeException: You cannot combine custom titles with other title featur

来源:互联网 发布:免费的开源数据库 编辑:程序博客网 时间:2024/06/01 09:23
解决方法:

后来,我直接在 AndroidManifest.xml 中,将android:theme="@style/AppTheme" 直接改成android:theme="@style/android:Theme.Light"(就是不继承API 14中的Theme,用回API 11前的Theme)

或者,删除values-v11values-v14里面的styles.xml

 
让系统自动调用values/styles.xml


由于API-11的<style name="Theme.Holo.Light"> 和 API-14<style name="Theme.Holo.Light.DarkActionBar"> 跟API之前版本的<style name="Theme.Light"> 代码太多不同了,所以就我也不明白到底哪里出了问题
0 0