remove comment

Signed-off-by: Marcel Hibbe <dev@mhibbe.de>
This commit is contained in:
Marcel Hibbe 2021-10-12 12:39:32 +02:00
parent d4322bf2d9
commit 0aee8eb7ef
No known key found for this signature in database
GPG Key ID: C793F8B59F43CE7B

View File

@ -63,7 +63,6 @@ class MagicCallActivity : BaseActivity() {
WindowManager.LayoutParams.FLAG_FULLSCREEN or WindowManager.LayoutParams.FLAG_FULLSCREEN or
WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON
) )
// window.decorView.systemUiVisibility = systemUiVisibility
binding = ActivityMagicCallBinding.inflate(layoutInflater) binding = ActivityMagicCallBinding.inflate(layoutInflater)
setContentView(binding.root) setContentView(binding.root)
@ -163,12 +162,5 @@ class MagicCallActivity : BaseActivity() {
companion object { companion object {
private val TAG = "MagicCallActivity" private val TAG = "MagicCallActivity"
/* private val systemUiVisibility: Int
get() {
var flags = View.SYSTEM_UI_FLAG_HIDE_NAVIGATION or View.SYSTEM_UI_FLAG_FULLSCREEN
flags = flags or View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY
return flags
} */
} }
} }