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

属性字符串LetterSpacingStyle如何使用?

HarmonyOS
2024-10-26 09:51:20
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
海底捞天王
import { LengthMetrics } from '@kit.ArkUI';
@Entry
@Component
struct Index {
  mutableStyledString: MutableStyledString = new MutableStyledString("运动35分钟", [
    {
      start: 0,
      length: 2,
      styledKey: StyledStringKey.LETTER_SPACING,
      styledValue: new LetterSpacingStyle(new LengthMetrics(20, LengthUnit.VP))
    }
  ]);
  controller: TextController = new TextController();

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

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