本文主要是介绍鸿蒙-右边固定长度,左边超长Text自适应,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
@Component @Entry struct test {build() {Row() {Column() {Text('长字符串长字符串长字符串长字符串长字符串长字符串长字符串长字符串长字符串长字符串长字符串长字符串长字符串长字符串长字符串长字符串长字符串').maxLines(1).textOverflow({ overflow: TextOverflow.Ellipsis }).constraintSize({maxWidth:'calc(100% - 100vp)'})}.flexGrow(1).backgroundColor(Color.Pink)Column() {Text('固定长度')}.width(100)}.width('90%').height(100).margin({ top: 100 }).justifyContent(FlexAlign.Start).border({width:1})} }
这篇关于鸿蒙-右边固定长度,左边超长Text自适应的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!