配置文本布局
使用收藏夹保持井井有条 根据您的喜好保存和分类内容。
此页面介绍如何使用 maxLines
和 overflow
等参数配置文本布局。
限制可见行数
要限制 Text
可组合项中可见的行数,请设置 maxLines
参数
@Composable
fun LongText() {
Text("hello ".repeat(50), maxLines = 2)
}
指示文本溢出
限制长文本时,您可能希望指示 TextOverflow
,只有在显示文本被截断时才会显示。为此,请设置 textOverflow
参数
@Composable
fun OverflowedText() {
Text("Hello Compose ".repeat(50), maxLines = 2, overflow = TextOverflow.Ellipsis)
}
为您推荐
此页面上的内容和代码示例受内容许可证中描述的许可证约束。Java 和 OpenJDK 是 Oracle 和/或其关联公司的商标或注册商标。
上次更新时间:2024 年 11 月 12 日(UTC)。
[[["易于理解","easyToUnderstand","thumb-up"],["解决了我的问题","solvedMyProblem","thumb-up"],["其他","otherUp","thumb-up"]],[["缺少我需要的信息","missingTheInformationINeed","thumb-down"],["过于复杂/步骤过多","tooComplicatedTooManySteps","thumb-down"],["已过期","outOfDate","thumb-down"],["示例/代码问题","samplesCodeIssue","thumb-down"],["其他","otherDown","thumb-down"]],["上次更新时间:2024 年 11 月 12 日(UTC)。"],[],[]]