gpt4 book ai didi

android - 水平排列在 Jetpack Compose Row 中不起作用

转载 作者:行者123 更新时间:2023-12-04 07:18:09 24 4
gpt4 key购买 nike

我按照官方文档了解Rows。
它工作正常。
它水平排列 View ,应用程序运行没有任何问题。
问题:
我想在 Row 中设置 Horizo​​ntalArrangement。 它没有安排。
我的代码:

@Composable
fun SimpleRowArrangement(){
Row(horizontalArrangement = Arrangement.SpaceEvenly,
verticalAlignment = Alignment.Bottom) {
Text(text = "Row Text 1")
Text(text = "Row Text 2")
Text(text = "Row Text 3")
}
}
输出:
enter image description here

最佳答案

您还应该申请 fillMaxWidth修饰符。

Row(modifier = Modifier.fillMaxWidth(),
horizontalArrangement = Arrangement.SpaceEvenly,
verticalAlignment = Alignment.Bottom) {
Text(text = "Row Text 1")
Text(text = "Row Text 2")
Text(text = "Row Text 3")
}
enter image description here

关于android - 水平排列在 Jetpack Compose Row 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68665839/

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