运行项目时,有时LogCat报错:AndroidRuntimeException: You cannot combine custom titles with other title feature


网上说,去掉AndroidManifest.xmlActivity的android:theme="@android:style/Theme.NoTitleBar.Fullscreen"属性。但我看AndroidManifest.xml根本没有设这个值
[Java] 纯文本查看 复制代码 ?
01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 <application android:allowBackup= "true" android:icon= "@drawable/ic_launcher" android:label= "@string/app_name" android:theme= "@style/TitleBarStyle" > <activity android:name= "com.example.b.MainActivity" android:label= "@string/app_name" > <intent-filter> <action android:name= "android.intent.action.MAIN" /> <category android:name= "android.intent.category.LAUNCHER" /> </intent-filter> </activity> </application>



有可能是@style/AppTheme里面设了这个值吧?于是我再看values/styles.xml文件


4.0 即API 14,AppBaseTheme应该在values-v14/style.xml里面的


于是我再去看android:Theme.Holo.Light.DarkActionBar


<style name="Theme.Holo.Light.DarkActionBar">里面没有关于类似<style name="windowNoTitle">的东西


<style name="Theme.Holo.Light">代码


太多东西了{:soso_e117:},他们引用的东西也不尽相同.....


解决方法:

后来,我直接在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">代码太多不同了,所以就我也不明白到底哪里出了问题


看到别人博客上还有一个解决的方案:

在style.xml中修改加入这句“<item name="android:windowActionBar">false</item>

[html] view plain copy
  1. <stylename="AppTheme"parent="AppBaseTheme">
  2. <!--AllcustomizationsthatareNOTspecifictoaparticularAPI-levelcangohere.-->
  3. <itemname="android:windowActionBar">false</item>
  4. </style>

更多相关文章

  1. Android(安卓)Studio使用问题解决
  2. Android(安卓)错误 'roundIcon' in package 'android'
  3. Android(安卓)的大牛的博客 提供给大家参考
  4. 关于新版SDK报错You need to use a Theme.AppCompat theme的两种
  5. Android对话框里面的输入值获取不到,空指针异常
  6. android里面EditTex多行输入及输入置顶问题
  7. Android知识点回顾
  8. 怎样成为一名Android开发者
  9. Android布局控件属性

随机推荐

  1. JNI在Android中的简单使用
  2. 2011.07.08——— android n获得壁纸
  3. Android 软键盘那点事
  4. Android删除指定文件夹下所有、删除指定
  5. android Theme
  6. Android计算器界面布局
  7. Android浏览器如何打开网页
  8. 改变ScrollView的滚动条的颜色
  9. Android(安卓)之WebView
  10. android高手系列