#鸿蒙学习大百科#属性字符串LineHeightStyle如何使用?

属性字符串LineHeightStyle如何使用?

HarmonyOS
2024-10-26 09:50:49
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
天涯独一隅
import { LengthMetrics } from '@kit.ArkUI';
@Entry
@Component
struct Index {
  mutableStyledString: MutableStyledString = new MutableStyledString("运动35分钟\n顶顶顶\n得到", [
    {
      start: 8,
      length: 3,
      styledKey: StyledStringKey.LINE_HEIGHT,
      styledValue: new LineHeightStyle(LengthMetrics.vp(50))
    }
  ]);
  controller: TextController = new TextController();

  async onPageShow() {
    this.controller.setStyledString(this.mutableStyledString)
  }

  build() {
    Column() {
      // 显示属性字符串
      Text(undefined, { controller: this.controller })
    }
    .width('100%')
    .margin({ top: 10 })
  }
}
分享
微博
QQ
微信
回复
2024-10-26 17:39:30
相关问题