使用appcompat-v7 22.2横向模式下CAB的背景错误

时间:2015-06-10 11:17:51

标签: java android android-actionbar appcompat-v7-r21 appcompat-v7-r22.2

我正在使用android支持v7 appcompat库(版本22.2)。我在工具栏中设置了一个主题:

<android.support.v7.widget.Toolbar
    ...
    app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
    app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar" />

为app设置主题:

<style name="Theme.MyTheme" parent="Theme.AppCompat.Light.NoActionBar">
    <item name="colorPrimary">@color/material_orange_500</item>
    <item name="colorPrimaryDark">@color/material_orange_800</item>
    <item name="colorAccent">@color/material_orange_500</item>
</style>

这就是我在版本21中以纵向模式看到的,在横向模式下也是如此 Version 21

但是在版本22.2中我在横向模式下看到错误的背景(但在纵向模式下) Version 22.2

如何修复此错误?

0 个答案:

没有答案