Android开发报错:AppCompat does not support the current theme features

来源:互联网 发布:充电器检测软件 编辑:程序博客网 时间:2024/04/28 00:43
使用ActionBarActivity + Toolbar的时候,之前这么定义
<style name="AppTheme.Base" parent="Theme.AppCompat.Light">        <item name="android:windowNoTitle">true</item>        <item name="windowActionBar">false</item></style>

当依赖框架com.android.support:appcompat-v7升级之后就出问题了。改为如下写法问题解决:

<style name="AppTheme.Base" parent="Theme.AppCompat.Light">        <item name="windowNoTitle">true</item>        <item name="windowActionBar">false</item></style>

或使用sdk预置的主题:

<style name="AppTheme.Base" parent="Theme.AppCompat.Light.NoActionBar"></style>
0 0
原创粉丝点击