android.view.View.systemUiVisibility deprecated. What is the replacement?

前端 未结 6 1134
自闭症患者
自闭症患者 2020-12-10 00:49

I have updated the project target API version to 30, and now I see that the systemUiVisibility property is deprecated.

The following kotlin code is the one I\'m using

6条回答
  •  借酒劲吻你
    2020-12-10 01:35

    As of version 1.5.0-alpha02, androidx.core has WindowCompat.setDecorFitsSystemWindows()

    To enable edge-to-edge:

    WindowCompat.setDecorFitsSystemWindows(window, false)
    

提交回复
热议问题