Label

This is an overview of the most common usage of Label. For more information about the available properties, methods, or events, head over to the complete API documentation for Label.

<Label> 是一个显示只读文本的UI组件。

重要提示:<Label> 不是 与 HTML一样的 <Label>.


<Label text="Label" />

造型标签

如果需要设置文本的部分样式,可以使用 FormattedStringSpan 元素的组合。

<Label textWrap="true">
  <FormattedString>
    <Span text="This text has a " />
    <Span text="red " style="color: red" />
    <Span text="piece of text. " />
    <Span text="Also, this bit is italic, " fontStyle="italic" />
    <Span text="and this bit is bold." fontWeight="bold" />
  </FormattedString>
</Label>

道具

名称类型描述
textString获取或设置标签的文本。
textWrapBoolean获取或设置标签是否包装文本。
默认值: false

原生组件

AndroidiOS
android.widget.TextViewUILabel
Contributors