admin管理员组文章数量:1345116
I am working on Jetpack Compose
UI in Android
.
I have a following Box
which shows a Text
.
@Preview
@Composable
fun MyText(modifier: Modifier = Modifier)
{
Box(modifier = Modifier.heightIn(max = 94.dp).widthIn(max = 270.dp)
.clip(shape = RoundedCornerShape(20.dp))
.border(
width = 1.dp,
color = Color.Green,
shape = RoundedCornerShape(20.dp)
)
.padding(horizontal = 20.dp, vertical = 8.dp)) {
Text(
text = "Learn how to use Compose effectively",
overflow = TextOverflow.Ellipsis,
maxLines = 3,
fontSize = 15.sp,
fontWeight = FontWeight.W400,
color = Color.Red
)
}
}
It produces attached output. As you can see, "effectively" shifts to next line due to width constraints but it leaves much empty space after "Compose" in the first line. Is there a way to remove that extra left space so that overall width reduces?
I am working on Jetpack Compose
UI in Android
.
I have a following Box
which shows a Text
.
@Preview
@Composable
fun MyText(modifier: Modifier = Modifier)
{
Box(modifier = Modifier.heightIn(max = 94.dp).widthIn(max = 270.dp)
.clip(shape = RoundedCornerShape(20.dp))
.border(
width = 1.dp,
color = Color.Green,
shape = RoundedCornerShape(20.dp)
)
.padding(horizontal = 20.dp, vertical = 8.dp)) {
Text(
text = "Learn how to use Compose effectively",
overflow = TextOverflow.Ellipsis,
maxLines = 3,
fontSize = 15.sp,
fontWeight = FontWeight.W400,
color = Color.Red
)
}
}
It produces attached output. As you can see, "effectively" shifts to next line due to width constraints but it leaves much empty space after "Compose" in the first line. Is there a way to remove that extra left space so that overall width reduces?
Share Improve this question edited 16 hours ago Vivek Mangal asked 16 hours ago Vivek MangalVivek Mangal 6763 gold badges9 silver badges28 bronze badges1 Answer
Reset to default 2You can try to use the onTextLayout
callback to find out how long the longest line of the actual text is. Then, set the maximum width of the Text
to the longest line length (rounded):
@Preview
@Composable
fun MyText(modifier: Modifier = Modifier) {
val localDensity = LocalDensity.current
var textWidth by remember { mutableIntStateOf(Int.MAX_VALUE) }
Box(
modifier = Modifier
.wrapContentWidth()
.clip(shape = RoundedCornerShape(20.dp))
.border(
width = 1.dp,
color = Color.Green,
shape = RoundedCornerShape(20.dp)
)
.padding(horizontal = 20.dp, vertical = 8.dp)
) {
Text(
modifier = Modifier
.requiredHeightIn(max = 94.dp)
.requiredWidthIn( max =
min(
localDensity.run { textWidth.toDp() },
230.dp
)
),
text = "Learn how to use Compose effectively",
onTextLayout = { textLayoutResult ->
var longestLine = 0f
repeat(textLayoutResult.lineCount) { lineIndex ->
longestLine = max(longestLine, textLayoutResult.getLineRight(lineIndex))
}
textWidth = ceil(longestLine).toInt()
},
overflow = TextOverflow.Ellipsis,
maxLines = 3,
fontSize = 15.sp,
fontWeight = FontWeight.W400,
color = Color.Red
)
}
}
Note that I shifted all the Modifier
s to the Text Composable and also adjusted the maximum width to not include the padding.
Output:
本文标签: androidCompose Text wrapping to next line but width not reducedStack Overflow
版权声明:本文标题:android - Compose Text wrapping to next line but width not reduced - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743757676a2533804.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论