HarmonyOS 文字展示中包含网络图片混合展示,需要怎展示这个Title

HarmonyOS
1天前
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
zbw_apple

可以参考ImageSpan组件:https://developer.huawei.com/consumer/cn/doc/harmonyos-references-V5/ts-basic-components-imagespan-V5#示例

参考demo:

// xxx.ets
@Entry
@Component
struct SpanExample {
  build() {
    Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Center, justifyContent: FlexAlign.Center }) {
      Text() {
        Span('This is the Span and ImageSpan component').fontSize(25).textCase(TextCase.Normal)
          .decoration({ type: TextDecorationType.None, color: Color.Pink })
      }.width('100%').textAlign(TextAlign.Center)
      Text() {
        ImageSpan($r('app.media.icon'))
          .width('200px')
          .height('200px')
          .objectFit(ImageFit.Fill)
          .verticalAlign(ImageSpanAlignment.CENTER)
        Span('I am LineThrough-span')
          .decoration({ type: TextDecorationType.LineThrough, color: Color.Red }).fontSize(25)
        ImageSpan($r('app.media.icon'))
          .width('50px')
          .height('50px')
          .verticalAlign(ImageSpanAlignment.TOP)
        Span('I am Underline-span')
          .decoration({ type: TextDecorationType.Underline, color: Color.Red }).fontSize(25)
        ImageSpan($r('app.media.icon'))
          .size({ width: '100px', height: '100px' })
          .verticalAlign(ImageSpanAlignment.BASELINE)
        Span('I am Underline-span')
          .decoration({ type: TextDecorationType.Underline, color: Color.Red }).fontSize(25)
        ImageSpan($r('app.media.icon'))
          .width('70px')
          .height('70px')
          .verticalAlign(ImageSpanAlignment.BOTTOM)
        Span('I am Underline-span')
          .decoration({ type: TextDecorationType.Underline, color: Color.Red }).fontSize(50)
      }
      .width('100%')
      .textIndent(50)
    }.width('100%').height('100%').padding({ left: 0, right: 0, top: 0 })
  }
}
分享
微博
QQ
微信
回复
1天前
相关问题
HarmonyOS Image展示本地图片失败
32浏览 • 1回复 待解决
HarmonyOS map无法展示
195浏览 • 1回复 待解决
HarmonyOS RichText 展示问题
185浏览 • 1回复 待解决
HarmonyOS 动画展示
8浏览 • 1回复 待解决
HarmonyOS 地图无法展示
55浏览 • 1回复 待解决
HarmonyOS 地图不展示
38浏览 • 1回复 待解决
IconFont图标展示方式
643浏览 • 1回复 待解决
HarmonyOS Slider UI展示问题
479浏览 • 1回复 待解决
HarmonyOS 地图组件无法展示
204浏览 • 1回复 待解决
富文本在web组件无法展示
2113浏览 • 1回复 待解决