欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

ActionBarImpl can only be used with a compatible window decor layout

程序员文章站 2022-06-03 13:01:38
...

在Activity中添加

requestWindowFeature(Window.FEATURE_ACTION_BAR);

requestWindowFeature(Window.FEATURE_ACTION_BAR_OVERLAY);

并在AndroidManifast.xml中对Activity进行android:theme="@android:style/Theme.Holo.Dialog"

就会报: ActionBarImpl can only be used with a compatible window decor layout

解决方案

1:requestWindowFeature(Window.FEATURE_ACTION_BAR);与android:theme="@android:style/Theme.Holo.Dialog"不能同时使用

2:把android:theme="@android:style/Theme.Holo.Dialog"改成android:theme="@android:style/Theme.Holo"

相关标签: actionbar