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

在编写自定义标题栏的时候,出现以下bug:

android.util.AndroidRuntimeException: You cannot combine custom titles with other title features .

发生这种错误往往有三种可能:

    1.如果你使用的是AndroidStudio的话在maniActivity中把ActivityC继承的AppCompatActivity改成Activity导包就可以。


报错】android.util.AndroidRuntimeException: You cannot combine custom titles with other title features._第1张图片


2对于Activity系统会默认添加android:theme属性而这个默认的属性带有默认的title,所以你要覆盖这个属性,不然的话就相当于一个Activity有两个title所以会出现运行异常,新添加的theme属性值里面应该不能有有title。

将对应的Activity添加属性android:theme="@android:style/Theme.Light"可正常运行。


3.或者直接删除掉\res\values-v11和v11+(系统默认的对你没有用处时)。



你可能感兴趣的:(错误分析)