gpt4 book ai didi

android - Jetpack 撰写 : Use different layout if text does not fit?

转载 作者:行者123 更新时间:2023-12-04 14:03:22 24 4
gpt4 key购买 nike

假设我有一个固定大小的矩形,里面有一些文字。由于用户可以从设备上的系统 - 辅助功能设置更改字体大小,因此字体可能不适合固定大小的矩形。如果发生这种情况,我们希望将文本呈现在矩形之外。
AFAIK 我应该以某种方式测量文本的宽度(例如),看看它是否适合矩形,如果不适合,则以不同的方式布局组件。
我将如何在 Jetpack Compose 中执行此操作?
所以有了这个伪代码,如果 text不适合 Box我想在它下面布置文本,从而引入 Column等等。

@Composable
fun myView() {
val text = Text("Some text")
Box(modifier = Modifier.size(40.dp)) {
text
}
}

最佳答案

使用 onTextLayout你可以得到绘制文本的大小。
为了防止在计算大小时实际绘制它,您可以使用 drawWithContent修饰符。

var textSize by remember { mutableStateOf<IntSize?>(null) }
val density = LocalDensity.current
val maxDimensionDp = remember(textSize) {
textSize?.let { textSize ->
with(density) {
maxOf(textSize.width, textSize.height).toDp()
}
}
}
val textComposable = @Composable {
Text(
"Some text",
onTextLayout = {
textSize = it.size
},
modifier = Modifier.drawWithContent {
if (textSize != null) {
drawContent()
}
}
)
}
when {
maxDimensionDp == null -> {
// calculating size.
// because of drawWithContent it's not gonna be drawn
textComposable()
}
maxDimensionDp < 40.dp -> {
Box(modifier = Modifier.size(40.dp).background(Color.Red)) {
textComposable()
}
}
else -> {
Column(modifier = Modifier.background(Color.Green)) {
textComposable()
}
}
}

关于android - Jetpack 撰写 : Use different layout if text does not fit?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69279281/

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