You cannot combine custom titles with other title features

调试程序的时候如果出现这样一行提示:
Caused by: android.util.AndroidRuntimeException: You cannot combine custom titles with other title features。


出现这个问题一般是因为在定义Activity的样式时,前后出现冲突所引起的。比如你前面一行语句用requestWindowFeature(Window.FEATURE_CUSTOM_TITLE)设置了窗口传统风格的标题,在下面又用setFlags()让窗口全屏显示。又或者你在Manifest.xml文件中Activity定义了theme的全屏属性,然后在代码中设置Activity有传统风格的标题,这样就产生了冲突。


解决办法就是让他们的风格统一。比如要全屏的话,把那行语句改成requestWindowFeature(Window.FEATURE_NO_TITLE)就好。


2013.11.19      书P198

你可能感兴趣的:(You cannot combine custom titles with other title features)