LibreTube/app/src/main/java/com/github/libretube/helpers/WindowHelper.kt

32 lines
1.2 KiB
Kotlin
Raw Normal View History

package com.github.libretube.helpers
2023-01-17 02:38:08 +05:30
2023-03-06 10:56:42 +05:30
import android.app.Activity
2023-01-17 02:38:08 +05:30
import android.os.Build
import android.view.WindowManager
import androidx.core.view.WindowCompat
import androidx.core.view.WindowInsetsCompat
import com.github.libretube.ui.extensions.toggleSystemBars
2023-01-17 02:38:08 +05:30
2023-03-06 10:56:42 +05:30
object WindowHelper {
fun toggleFullscreen(activity: Activity, isFullscreen: Boolean) {
val window = activity.window
2023-01-17 02:38:08 +05:30
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.P) {
2023-03-06 10:56:42 +05:30
window.attributes.layoutInDisplayCutoutMode = if (isFullscreen) {
2023-01-17 02:38:08 +05:30
WindowManager.LayoutParams.LAYOUT_IN_DISPLAY_CUTOUT_MODE_SHORT_EDGES
2023-03-06 10:56:42 +05:30
} else {
WindowManager.LayoutParams.LAYOUT_IN_DISPLAY_CUTOUT_MODE_DEFAULT
}
2023-01-17 02:38:08 +05:30
}
2023-03-06 10:56:42 +05:30
WindowCompat.setDecorFitsSystemWindows(window, !isFullscreen)
2023-01-17 02:38:08 +05:30
// Show the system bars when it is not fullscreen and hide them when it is fullscreen
// System bars means status bar and the navigation bar
// See: https://developer.android.com/training/system-ui/immersive#kotlin
activity.toggleSystemBars(
types = WindowInsetsCompat.Type.systemBars(),
showBars = !isFullscreen
)
}
}