在Android O上切换状态栏颜色的问题

时间:2017-09-08 05:57:10

标签: android android-6.0-marshmallow android-theme android-8.0-oreo

有些东西不起作用,我不知道它是模拟器的问题还是Android Oreo中的错误(我没有带有Android O的物理设备),但我无法从黑暗状态切换到状态栏像Marschmallow一样的主题。

样式(来自api 23):

<resources>

    <style name="ThemeLight" parent="MyBaseTheme">
        <item name="android:windowBackground">?attr/colorPrimary</item>
        <item name="android:statusBarColor">?attr/colorPrimary</item>
        <item name="android:windowLightStatusBar">true</item>
    </style>


    <style name="ThemeDark" parent="MyBaseThemeDark">
        <item name="android:windowBackground">?attr/colorPrimary</item>
        <item name="android:statusBarColor">?attr/colorPrimary</item>
        <item name="android:windowLightStatusBar">false</item>
    </style>


</resources>

在Android中Marshmallow在使用setTheme()更改主题时效果很好,但在Android O中,一旦切换到灯光主题,它就不再更改且状态栏保持黑暗(windowLightStatusBar = true)/ :

1 个答案:

答案 0 :(得分:1)

这一定是个错误,我已将其报告给谷歌(https://issuetracker.google.com/issues/65883460)。

我使用这些代码来临时解决问题。

// fix windowLightStatusBar not changed after applyStyle on Android O
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
    final TypedArray a = obtainStyledAttributes(new int[]{android.R.attr.windowLightStatusBar});
    final boolean windowLightStatusBar = a.getBoolean(0, false);
    a.recycle();
    int flag = getWindow().getDecorView().getSystemUiVisibility();
    if (windowLightStatusBar) {
        flag |= View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR;
    } else {
        flag &= ~View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR;
    }
    getWindow().getDecorView().setSystemUiVisibility(flag);
}