读书人

android异常之android.util.AndroidRu

发布时间: 2013-10-24 18:27:21 作者: rapoo

android错误之android.util.AndroidRuntimeException: You cannot combine custom titles with other title

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

这个问题主要是由下面语句造成的。

requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);
setContentView(R.layout.main);
getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE, R.layout.custom_title);

原因暂时不是很清楚,在android4.0中会出现,android2.3中没有问题,貌似是title的冲突,解决方法如下:

在你的AndroidManifest.xml中添加相应Active的theme。如添加下面语句可解决:

android:theme="@android:style/Theme.Dialog"

具体的theme选项内容的添加根据你自己的意图选择。

读书人网 >其他相关

热点推荐