IllegalArgumentException: AppCompat does not support the current theme features

android-support-v7-appcompat 升级到v22.1.0版本之后运行出现异常

IllegalArgumentException: AppCompat does not support the current theme features

搜索了一下,在stackoverflow找到靠谱的解决方法。

方法有两种
1、使用Theme.AppCompat.NoActionBar作为你的 parent theme。
2、使用如下代码段替换你的style。



另外你的activity要继承AppCompatActivity ,ActionBarActivity已经deprecated.

你可能感兴趣的:(Android,appcompat,theme)