【Android Compose】Compose Text设置字间距

Android Compose Text设置字间距

解决方案

在 Compose 中,可以使用 TextStyle 的 letterSpacing 属性来设置 Text 可组合项的字间距。
letterSpacing 属性接受一个 TextUnit 值,用于指定字间距的大小。可以使用 sp 或 em 单位来设置字间距。
for example:

@OptIn(ExperimentalUnitApi::class)
Text(
    text = "Hello, world!",style = TextStyle(letterSpacing = 1.sp) // 设置字间距为 1sp
)

@OptIn(ExperimentalUnitApi::class)
Text(
    text = "Hello, world!",
    style = TextStyle(letterSpacing = 0.1.em) // 设置字间距为 0.1em
)

请注意,TextUnit 是一个实验性 API,因此需要使用 @OptIn(ExperimentalUnitApi::class) 注解来启用它。

或者需要更精细地控制字间距,可以使用 AnnotatedString 并为不同的字符或字符串段设置不同的 letterSpacing 值。

val annotatedString = buildAnnotatedString {
    withStyle(style = SpanStyle(letterSpacing = 1.sp)) { append("Hello, ") }
    withStyle(style = SpanStyle(letterSpacing = 2.sp)) { append("world!") }
}

Text(text = annotatedString)

猜你喜欢

转载自blog.csdn.net/weixin_42473228/article/details/142284198