Text组件的子组件

2024-01-22 17:27 更新

作为Text组件的子组件,用于显示行内文本的组件。

说明

该组件从API Version 7开始支持。后续版本如有新增内容,则采用上角标单独标记该内容的起始版本。

子组件

接口

Span(value: string | Resource)

从API version 9开始,该接口支持在ArkTS卡片中使用。

参数:

参数名

参数类型

必填

参数描述

value

string | Resource

文本内容。

属性

通用属性方法仅支持通用文本样式

名称

参数类型

描述

decoration

{

type: TextDecorationType,

color?: ResourceColor

}

设置文本装饰线样式及其颜色。

默认值:{

type: TextDecorationType.None

color:Color.Black

}

从API version 9开始,该接口支持在ArkTS卡片中使用。

letterSpacing

number | string

设置文本字符间距。取值小于0,字符聚集重叠,取值大于0且随着数值变大,字符间距越来越大,稀疏分布。

从API version 9开始,该接口支持在ArkTS卡片中使用。

textCase

TextCase

设置文本大小写。

默认值:TextCase.Normal

从API version 9开始,该接口支持在ArkTS卡片中使用。

事件

通用事件仅支持点击事件

说明

由于Span组件无尺寸信息,因此点击事件返回的ClickEvent对象的target属性无效。

示例

  1. // xxx.ets
  2. @Entry
  3. @Component
  4. struct SpanExample {
  5. build() {
  6. Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Start, justifyContent: FlexAlign.SpaceBetween }) {
  7. Text('Basic Usage').fontSize(9).fontColor(0xCCCCCC)
  8. Text() {
  9. Span('In Line')
  10. Span(' Component')
  11. Span(' !')
  12. }
  13. Text() {
  14. Span('This is the Span component').fontSize(12).textCase(TextCase.Normal)
  15. .decoration({ type: TextDecorationType.None, color: Color.Red })
  16. }
  17. // 文本横线添加
  18. Text('Text Decoration').fontSize(9).fontColor(0xCCCCCC)
  19. Text() {
  20. Span('I am Underline-span').decoration({ type: TextDecorationType.Underline, color: Color.Red }).fontSize(12)
  21. }
  22. Text() {
  23. Span('I am LineThrough-span')
  24. .decoration({ type: TextDecorationType.LineThrough, color: Color.Red })
  25. .fontSize(12)
  26. }
  27. Text() {
  28. Span('I am Overline-span').decoration({ type: TextDecorationType.Overline, color: Color.Red }).fontSize(12)
  29. }
  30. // 文本字符间距
  31. Text('LetterSpacing').fontSize(9).fontColor(0xCCCCCC)
  32. Text() {
  33. Span('span letter spacing')
  34. .letterSpacing(0)
  35. .fontSize(12)
  36. }
  37. Text() {
  38. Span('span letter spacing')
  39. .letterSpacing(-2)
  40. .fontSize(12)
  41. }
  42. Text() {
  43. Span('span letter spacing')
  44. .letterSpacing(3)
  45. .fontSize(12)
  46. }
  47. // 文本大小写展示设置
  48. Text('Text Case').fontSize(9).fontColor(0xCCCCCC)
  49. Text() {
  50. Span('I am Lower-span').fontSize(12)
  51. .textCase(TextCase.LowerCase)
  52. .decoration({ type: TextDecorationType.None })
  53. }
  54. Text() {
  55. Span('I am Upper-span').fontSize(12)
  56. .textCase(TextCase.UpperCase)
  57. .decoration({ type: TextDecorationType.None })
  58. }
  59. }.width('100%').height(250).padding({ left: 35, right: 35, top: 35 })
  60. }
  61. }

以上内容是否对您有帮助:
在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号