actionbar 与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"不能同时使用

解决方案:

修改dialog 的style 样式,如下所示,标红就是修改部分

 <style name="theme_dialog_alert"    parent="@android:style/Theme.Dialog">
        <item name="android:windowBackground">@android:color/transparent</item>
        <item name="android:windowIsFloating">true</item>
        <item name="android:windowContentOverlay">@null</item>
    </style>

 相关关键词:  android教程百度网盘

猜你喜欢

转载自dasheny.iteye.com/blog/2173648
今日推荐