为什么在AOS 4.4和6.0上为偏好屏幕设置不同的主题颜色

时间:2016-09-23 13:55:37

标签: android themes

为什么同一个应用程序在Android 4.4和6.0上为偏好屏幕显示不同的主题颜色。

设备快照下方。enter image description here

和AOS版本:6.0 enter image description here

下面是样式

文件夹

                      @色/ colorPrimary         @色/ colorPrimaryDark         @色/ colorAccent     

<style name="AppTheme.NoActionBar">
    <item name="windowActionBar">false</item>
    <item name="windowNoTitle">true</item>
</style>

<style name="AppTheme.AppBarOverlay" parent="ThemeOverlay.AppCompat.Dark.ActionBar" />

<style name="AppTheme.PopupOverlay" parent="ThemeOverlay.AppCompat.Light"/>

values-21 文件夹

<style name="AppTheme.NoActionBar">
    <item name="windowActionBar">false</item>
    <item name="windowNoTitle">true</item>
    <item name="android:windowDrawsSystemBarBackgrounds">true</item>
    <item name="android:statusBarColor">@android:color/transparent</item>
</style>

<style name="AppTheme.Prefs" parent="Theme.AppCompat.Light.NoActionBar">
    <item name="windowActionBar">false</item>
    <item name="windowNoTitle">true</item>

</style>

0 个答案:

没有答案