android-kotlin-drawing-canvas icon indicating copy to clipboard operation
android-kotlin-drawing-canvas copied to clipboard

'SYSTEM_UI_FLAG_FULLSCREEN: Int' is deprecated. Deprecated in Java

Open deveopsgenuis opened this issue 2 years ago • 0 comments

I noticed that the 'SYSTEM_UI_FLAG_FULLSCREEN: Int' has been deprecated in Java, but I haven't seen anyone bring up this issue yet. I tried implementing a potential solution, but I'm still unsure if it's working correctly or not. here is my code:

        window.insetsController?.let {
            it.hide(WindowInsets.Type.statusBars() or WindowInsets.Type.navigationBars())
            it.systemBarsBehavior = WindowInsetsController.BEHAVIOR_SHOW_TRANSIENT_BARS_BY_SWIPE
        }

Versions Android Studio Electric Eel | 2022.1.1 Patch 2

deveopsgenuis avatar May 11 '23 22:05 deveopsgenuis