Status Bar Color not showing - 5.0 Lollipop Android Studio: (AppCompat-v7:r21)

前端 未结 11 1368
-上瘾入骨i
-上瘾入骨i 2020-12-23 20:02

I\'m using the AppCompat-v7:21.0.0 support library for Android 5.0 Lollipop in Android Studio. My problem is that the Status Bar Color that can be changed by se

11条回答
  •  一个人的身影
    2020-12-23 20:24

    Please read this: For this to take effect, the window must be drawing the system bar backgrounds with

    android.view.WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS
    

    but

    android.view.WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS
    

    must not be set (Source)

    In case of you don't know how to add that flag:

    getWindow().addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS);
    

提交回复
热议问题