gpt4 book ai didi

android - Jetpack Compose - 如何在 ClickableText 中居中文本

转载 作者:行者123 更新时间:2023-12-04 23:44:01 26 4
gpt4 key购买 nike

在 Jetpack Compose 中,使用 Text 时,我们可以使用 TextAlign 使文本居中:

Text(
text = "How many cars are in the garage",
textAlign = TextAlign.Center
)
但是,如果我们希望在 Text composable 中获得点击的位置,我们使用 ClickableText :
ClickableText(
text = AnnotatedString("Click Me"),
onClick = { offset ->
Log.d("ClickableText", "$offset -th character is clicked.")
}
)
但是我看不到如何在 ClickableText 中居中文本?我可以使用重力,但这只会使组件居中,而不是其中的文本。

最佳答案

您可以定义 textAlignstyle范围:

ClickableText(
text = AnnotatedString("Click Me"),
style = TextStyle(
textAlign = TextAlign.Center),
onClick = { offset ->

}
)

关于android - Jetpack Compose - 如何在 ClickableText 中居中文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70861167/

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