App SDK从27.0.2迁移到27.1.0:itemBackground属性在API< 20

时间:2018-03-07 12:47:47

标签: android styles

我刚刚将我的Gradle从Android SDK 27.0.2升级到27.1.0。不幸的是,项目弹出渲染器有一个回归。

对于API<现在背景是暗的,而API> = 20。

API< 20

enter image description here

API> = 20

enter image description here

我尝试添加样式(styles-v19文件夹),但所有样式都受到影响:

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <style name="Theme.xxx.Base" parent="Theme.xxx.Root">      
        <item name="android:itemBackground">#F5F5F5</item>
    </style>
</resources>

那么如何才能为API 19指定此属性而不为所有其他版本指定此属性?

非常感谢你们。

0 个答案:

没有答案