我正在使用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中以纵向模式看到的,在横向模式下也是如此
但是在版本22.2中我在横向模式下看到错误的背景(但在纵向模式下)
如何修复此错误?