如何在 Jetpack Compose 中将 TextUnit 转换为 Dp?

问题描述

我知道它们之间的区别。我想根据 height 计算文本 lineHeightlineHeight 的值在 TextUnit 中,所以我想将其转换为 Dp

解决方法

您需要从 Density 中获取当前的 LocalDensity——所以这只适用于组合,在 @Composable 函数中——并使用它来转换为 Dp :

val lineHeightSp: TextUnit = 12.sp
val lineHeightDp: Dp = with(LocalDensity.current) {
     lineHeightSp.toDp()
}
,

我为此使用了这些全局函数:

功能:

@Composable
fun Float.dp() = with(LocalDensity.current) {  Dp(this@dp).toSp() }

@Composable
fun Int.dp() = with(LocalDensity.current) {  Dp(this@dp.toFloat()).toSp()  }

用法:

Text(
        text = lorem(2),color = Color.Red,maxLines = 1000,fontSize = 20f.dp()
    )
,
private fun Int.textDp(density: Density): TextUnit = with(density) {
    this@textDp.dp.toSp()
}

val Int.textDp: TextUnit
    @Composable get() =  this.textDp(density = LocalDensity.current)