如何在 jetpack compose 中显示具有适当大小/布局的垂直文本

Tyl*_*r V 6 android android-jetpack android-jetpack-compose

如何在 jetpack 中正确旋转文本并使其进行正确的布局?当我rotate在文本对象上使用修饰符时,文本会旋转,但布局中占用的大小似乎使用预旋转的文本宽度。

这是我想要完成的一个简单示例 - 垂直文本应该位于狭窄空间的左侧:

@Composable
fun MainBox() {
    Column(
        modifier = Modifier.fillMaxSize(),
        horizontalAlignment = Alignment.CenterHorizontally
    ) {
        Text(
            modifier = Modifier.padding(4.dp).background(Color.Gray),
            text = "This is at the top"
        )

        Row(
            modifier = Modifier.fillMaxWidth().weight(1f),
            verticalAlignment = Alignment.CenterVertically
        ) {

            Text(
                modifier = Modifier.padding(4.dp).rotate(-90f),
                text = "This should be vertical text on the left side"
            )

            Text(
                modifier = Modifier.fillMaxSize().background(Color.Yellow),
                textAlign = TextAlign.Center,
                text = "This is a big yellow box that should take up most of the space"
            )
        }
    }
}
Run Code Online (Sandbox Code Playgroud)

然而,这表明的就是这个。

长竖排文字

如果我缩短垂直文本中的文本,它只会占用一个狭窄的空间,这看起来更像我想要的布局。

短竖排文字

有没有一种方法可以拦截布局过程或用于固定大小的其他设置,以便垂直文本仅占用一个文本行的水平空间宽度,但仍然适应用户字体大小的变化(因此没有固定大小)?

此处此处类似问题的答案不能解决此问题或不再有效。

Эва*_*ist 18

我的版本。经过几次测试后似乎效果很好

class ComposeActivity7 : ComponentActivity() {

    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)

        setContent {
            ComposeTutorialTheme {

                Column(
                    modifier = Modifier.fillMaxSize(),
                    horizontalAlignment = Alignment.CenterHorizontally
                ) {
                    Text(
                        modifier = Modifier
                            .padding(4.dp)
                            .background(Color.Gray),
                        text = "This is at the top"
                    )

                    Row(
                        modifier = Modifier
                            .fillMaxWidth()
                            .weight(1f),
                        verticalAlignment = Alignment.CenterVertically
                    ) {
                        Text(
                            modifier = Modifier
                                .vertical()
                                .rotate(-90f)
                                .background(Color.Gray)
                                .padding(4.dp),
                            text = "This should be vertical text on the left side"
                        )
                        Text(
                            modifier = Modifier
                                .fillMaxSize()
                                .background(Color.Yellow),
                            textAlign = TextAlign.Center,
                            text = "This is a big yellow box that should take up most of the space"
                        )
                    }
                }
            }
        }
    }
}

fun Modifier.vertical() =
    layout { measurable, constraints ->
        val placeable = measurable.measure(constraints)
        layout(placeable.height, placeable.width) {
            placeable.place(
                x = -(placeable.width / 2 - placeable.height / 2),
                y = -(placeable.height / 2 - placeable.width / 2)
            )
        }
    }

Run Code Online (Sandbox Code Playgroud)

结果

在此输入图像描述