From 223c0c1263ceaf7fe62825cf2f8a36d7c76ccfc8 Mon Sep 17 00:00:00 2001 From: KotlinGeekDev Date: Tue, 13 Aug 2024 10:42:49 +0100 Subject: [PATCH] Initial implementation for auto-fullscreen on rotation to landscape mode. --- .../ui/components/ZoomableContentView.kt | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/components/ZoomableContentView.kt b/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/components/ZoomableContentView.kt index eefbde261..47fff2a96 100644 --- a/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/components/ZoomableContentView.kt +++ b/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/components/ZoomableContentView.kt @@ -23,6 +23,7 @@ package com.vitorpamplona.amethyst.ui.components import android.app.Activity import android.content.Context import android.content.ContextWrapper +import android.content.res.Configuration import android.util.Log import android.view.Window import androidx.compose.animation.AnimatedVisibility @@ -46,12 +47,14 @@ import androidx.compose.runtime.MutableState import androidx.compose.runtime.getValue import androidx.compose.runtime.mutableStateOf import androidx.compose.runtime.remember +import androidx.compose.runtime.rememberUpdatedState import androidx.compose.runtime.setValue import androidx.compose.ui.Alignment import androidx.compose.ui.Modifier import androidx.compose.ui.graphics.Color import androidx.compose.ui.layout.ContentScale import androidx.compose.ui.platform.LocalClipboardManager +import androidx.compose.ui.platform.LocalConfiguration import androidx.compose.ui.platform.LocalContext import androidx.compose.ui.platform.LocalUriHandler import androidx.compose.ui.platform.LocalView @@ -118,6 +121,19 @@ fun ZoomableContentView( ) { var dialogOpen by remember(content) { mutableStateOf(false) } + val orientation = LocalConfiguration.current.orientation + + val orientationState by rememberUpdatedState(newValue = orientation) + val (sOrientation, isLandscapeMode) = + when (orientationState) { + Configuration.ORIENTATION_LANDSCAPE -> Pair("Landscape", true) + Configuration.ORIENTATION_PORTRAIT -> Pair("Portrait", false) + + else -> Pair("Unknown", false) + } + + Log.d("AmethystConf", "Device orientation is: $sOrientation") + val contentScale = if (isFiniteHeight) { ContentScale.Fit @@ -179,6 +195,7 @@ fun ZoomableContentView( } } } + if (isLandscapeMode) dialogOpen = true if (dialogOpen) { ZoomableImageDialog(content, images, onDismiss = { dialogOpen = false }, accountViewModel)