文本的组件

2024-01-22 17:28 更新

显示一段文本的组件。

说明

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

子组件

可以包含Span子组件。

接口

Text(content?: string | Resource)

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

参数:

参数名

参数类型

必填

参数描述

content

string | Resource

文本内容。包含子组件Span时不生效,显示Span内容,并且此时text组件的样式不生效。

默认值:' '

属性

除支持通用属性外,还支持以下属性:

名称

参数类型

描述

textAlign

TextAlign

设置文本段落在水平方向的对齐方式

默认值:TextAlign.Start

说明:

文本段落宽度占满Text组件宽度。

可通过align属性控制文本段落在垂直方向上的位置,此组件中不可通过align属性控制文本段落在水平方向上的位置,即align属性中Alignment.TopStart、Alignment.Top、Alignment.TopEnd效果相同,控制内容在顶部。Alignment.Start、Alignment.Center、Alignment.End效果相同,控制内容垂直居中。Alignment.BottomStart、Alignment.Bottom、Alignment.BottomEnd效果相同,控制内容在底部。结合TextAlign属性可控制内容在水平方向的位置。

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

textOverflow

{overflow: TextOverflow}

设置文本超长时的显示方式。

默认值:{overflow: TextOverflow.Clip}

说明:

文本截断是按字截断。例如,英文以单词为最小单位进行截断,若需要以字母为单位进行截断,可在字母间添加零宽空格:\u200B。

需配合maxLines使用,单独设置不生效。

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

maxLines

number

设置文本的最大行数。

说明:

默认情况下,文本是自动折行的,如果指定此参数,则文本最多不会超过指定的行。如果有多余的文本,可以通过 textOverflow来指定截断方式。

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

lineHeight

string | number | Resource

设置文本的文本行高,设置值不大于0时,不限制文本行高,自适应字体大小,Length为number类型时单位为fp。

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

decoration

{

type: TextDecorationType,

color?: ResourceColor

}

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

默认值:{

type: TextDecorationType.None,

color:Color.Black

}

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

baselineOffset

number | string

设置文本基线的偏移量,默认值0。

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

说明:

设置该值为百分比时,按默认值显示。

letterSpacing

number | string

设置文本字符间距。

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

说明:

设置该值为百分比时,按默认值显示。

minFontSize

number | string | Resource

设置文本最小显示字号。

需配合maxFontSize以及maxline或布局大小限制使用,单独设置不生效。

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

maxFontSize

number | string | Resource

设置文本最大显示字号。

需配合minFontSize以及maxline或布局大小限制使用,单独设置不生效。

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

textCase

TextCase

设置文本大小写。

默认值:TextCase.Normal

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

copyOption9+

CopyOptions

组件支持设置文本是否可复制粘贴。

默认值:CopyOptions.None

该接口支持在ArkTS卡片中使用。

说明:

设置copyOptions为CopyOptions.InApp或者CopyOptions.LocalDevice,长按文本,会弹出文本选择菜单,可选中文本并进行复制、全选操作。

说明

不支持Text内同时存在文本内容和Span子组件。如果同时存在,只显示Span内的内容。

事件

支持通用事件

示例

示例1

textAlign,textOverflow,maxLines,lineHeight使用示例。

  1. // xxx.ets
  2. @Entry
  3. @Component
  4. struct TextExample1 {
  5. build() {
  6. Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Start, justifyContent: FlexAlign.SpaceBetween }) {
  7. // 文本水平方向对齐方式设置
  8. // 单行文本
  9. Text('textAlign').fontSize(9).fontColor(0xCCCCCC)
  10. Text('TextAlign set to Center.')
  11. .textAlign(TextAlign.Center)
  12. .fontSize(12)
  13. .border({ width: 1 })
  14. .padding(10)
  15. .width('100%')
  16. Text('TextAlign set to Start.')
  17. .textAlign(TextAlign.Start)
  18. .fontSize(12)
  19. .border({ width: 1 })
  20. .padding(10)
  21. .width('100%')
  22. Text('TextAlign set to End.')
  23. .textAlign(TextAlign.End)
  24. .fontSize(12)
  25. .border({ width: 1 })
  26. .padding(10)
  27. .width('100%')
  28. // 多行文本
  29. Text('This is the text content with textAlign set to Center.')
  30. .textAlign(TextAlign.Center)
  31. .fontSize(12)
  32. .border({ width: 1 })
  33. .padding(10)
  34. .width('100%')
  35. Text('This is the text content with textAlign set to Start.')
  36. .textAlign(TextAlign.Start)
  37. .fontSize(12)
  38. .border({ width: 1 })
  39. .padding(10)
  40. .width('100%')
  41. Text('This is the text content with textAlign set to End.')
  42. .textAlign(TextAlign.End)
  43. .fontSize(12)
  44. .border({ width: 1 })
  45. .padding(10)
  46. .width('100%')
  47. // 文本超长时显示方式
  48. Text('TextOverflow+maxLines').fontSize(9).fontColor(0xCCCCCC)
  49. // 超出maxLines截断内容展示
  50. Text('This is the setting of textOverflow to Clip text content This is the setting of textOverflow to None text content. This is the setting of textOverflow to Clip text content This is the setting of textOverflow to None text content.')
  51. .textOverflow({ overflow: TextOverflow.Clip })
  52. .maxLines(1)
  53. .fontSize(12)
  54. .border({ width: 1 })
  55. .padding(10)
  56. // 超出maxLines展示省略号
  57. Text('This is set textOverflow to Ellipsis text content This is set textOverflow to Ellipsis text content.'.split('')
  58. .join('\u200B'))
  59. .textOverflow({ overflow: TextOverflow.Ellipsis })
  60. .maxLines(1)
  61. .fontSize(12)
  62. .border({ width: 1 })
  63. .padding(10)
  64. Text('lineHeight').fontSize(9).fontColor(0xCCCCCC)
  65. Text('This is the text with the line height set. This is the text with the line height set.')
  66. .fontSize(12).border({ width: 1 }).padding(10)
  67. Text('This is the text with the line height set. This is the text with the line height set.')
  68. .fontSize(12).border({ width: 1 }).padding(10)
  69. .lineHeight(20)
  70. }.height(600).width(350).padding({ left: 35, right: 35, top: 35 })
  71. }
  72. }

示例2

decoration,baselineOffset,letterSpacing,textCase使用示例:

  1. @Entry
  2. @Component
  3. struct TextExample2 {
  4. build() {
  5. Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Start, justifyContent: FlexAlign.SpaceBetween }) {
  6. Text('decoration').fontSize(9).fontColor(0xCCCCCC)
  7. Text('This is the text content with the decoration set to LineThrough and the color set to Red.')
  8. .decoration({
  9. type: TextDecorationType.LineThrough,
  10. color: Color.Red
  11. })
  12. .fontSize(12)
  13. .border({ width: 1 })
  14. .padding(10)
  15. .width('100%')
  16. Text('This is the text content with the decoration set to Overline and the color set to Red.')
  17. .decoration({
  18. type: TextDecorationType.Overline,
  19. color: Color.Red
  20. })
  21. .fontSize(12)
  22. .border({ width: 1 })
  23. .padding(10)
  24. .width('100%')
  25. Text('This is the text content with the decoration set to Underline and the color set to Red.')
  26. .decoration({
  27. type: TextDecorationType.Underline,
  28. color: Color.Red
  29. })
  30. .fontSize(12)
  31. .border({ width: 1 })
  32. .padding(10)
  33. .width('100%')
  34. // 文本基线偏移
  35. Text('baselineOffset').fontSize(9).fontColor(0xCCCCCC)
  36. Text('This is the text content with baselineOffset 0.')
  37. .baselineOffset(0)
  38. .fontSize(12)
  39. .border({ width: 1 })
  40. .padding(10)
  41. .width('100%')
  42. Text('This is the text content with baselineOffset 30.')
  43. .baselineOffset(30)
  44. .fontSize(12)
  45. .border({ width: 1 })
  46. .padding(10)
  47. .width('100%')
  48. Text('This is the text content with baselineOffset -20.')
  49. .baselineOffset(-20)
  50. .fontSize(12)
  51. .border({ width: 1 })
  52. .padding(10)
  53. .width('100%')
  54. // 文本字符间距
  55. Text('letterSpacing').fontSize(9).fontColor(0xCCCCCC)
  56. Text('This is the text content with letterSpacing 0.')
  57. .letterSpacing(0)
  58. .fontSize(12)
  59. .border({ width: 1 })
  60. .padding(10)
  61. .width('100%')
  62. Text('This is the text content with letterSpacing 3.')
  63. .letterSpacing(3)
  64. .fontSize(12)
  65. .border({ width: 1 })
  66. .padding(10)
  67. .width('100%')
  68. Text('This is the text content with letterSpacing -1.')
  69. .letterSpacing(-1)
  70. .fontSize(12)
  71. .border({ width: 1 })
  72. .padding(10)
  73. .width('100%')
  74. Text('textCase').fontSize(9).fontColor(0xCCCCCC)
  75. Text('This is the text content with textCase set to Normal.')
  76. .textCase(TextCase.Normal)
  77. .fontSize(12)
  78. .border({ width: 1 })
  79. .padding(10)
  80. .width('100%')
  81. // 文本全小写展示
  82. Text('This is the text content with textCase set to LowerCase.')
  83. .textCase(TextCase.LowerCase)
  84. .fontSize(12)
  85. .border({ width: 1 })
  86. .padding(10)
  87. .width('100%')
  88. // 文本全大写展示
  89. Text('This is the text content with textCase set to UpperCase.')
  90. .textCase(TextCase.UpperCase)
  91. .fontSize(12).border({ width: 1 }).padding(10)
  92. }.height(700).width(350).padding({ left: 35, right: 35, top: 35 })
  93. }
  94. }

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

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号