gpt4 book ai didi

android - Android @Compose 如何处理 Android 中的屏幕大小和方向

转载 作者:行者123 更新时间:2023-12-04 11:23:57 25 4
gpt4 key购买 nike

Android @Compose 如何处理 Android 中的屏幕大小和方向。
谷歌搜索后我无法找到合适的答案。有人可以回答这个问题。

最佳答案

您可以像这样检查方向:

val configuration = LocalConfiguration.current
when(configuration.orientation) {
Configuration.ORIENTATION_LANDSCAPE -> {}
Configuration.ORIENTATION_PORTRAIT -> {}
Configuration.ORIENTATION_SQUARE -> {}
Configuration.ORIENTATION_UNDEFINED -> {}
}
对于屏幕尺寸:
BoxWithConstraints() {
// thats what you can access:
this.maxWidth
this.maxHeight
this.minWidth
this.minHeight
}

关于android - Android @Compose 如何处理 Android 中的屏幕大小和方向,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59079355/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com