p2play-app-android/app/src/main/java/org/libre/agosto/p2play/helpers/setFullscreen.kt

14 lines
464 B
Kotlin
Raw Normal View History

2024-03-28 04:31:41 +01:00
package org.libre.agosto.p2play.helpers
import android.view.View
import android.view.Window
import android.view.WindowManager
2024-04-06 22:38:04 +02:00
fun setFullscreen(window: Window) {
2024-03-28 04:31:41 +01:00
val attrs = window.attributes
attrs.flags = attrs.flags or WindowManager.LayoutParams.FLAG_FULLSCREEN
attrs.flags = attrs.flags or WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON
window.attributes = attrs
window.decorView.systemUiVisibility = View.SYSTEM_UI_FLAG_HIDE_NAVIGATION
2024-04-06 22:38:04 +02:00
}