How can I make the status bar white with black icons?

前端 未结 7 818
野性不改
野性不改 2020-12-02 18:03

I want to change the colour of the status bar for my app so that it\'s white with black icons (instead of the default black with white icons). Is there any way of doing this

7条回答
  •  悲&欢浪女
    2020-12-02 18:24

    Just added to my activity on Kotlin:

    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
                    window.decorView.systemUiVisibility =View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR
                    window.statusBarColor = Color.WHITE
                }
    

提交回复
热议问题