Translucent status bar in Android

后端 未结 6 2047
猫巷女王i
猫巷女王i 2020-12-17 01:17

I am using the following layout (main_activity.xml)




        
6条回答
  •  执念已碎
    2020-12-17 02:10

    It seems some people have grey status bar instead of transparent. To avoid this problem do the next in your activity:

    override fun onCreate(savedInstanceState: Bundle?) {
        ...
        window.apply {
            clearFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS)
            addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS)
            statusBarColor = Color.TRANSPARENT
            decorView.systemUiVisibility = View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
        }
    }
    

提交回复
热议问题