HarmonyOS List上展示html字符串

1、RichText展示html时,字体大小很小。例如:

<span style='font-size: 18px;'><a><span style='color: #16abf0;'>测试</span></a>服务</span>

使用RichText展示时,字体很小。

2、官方文档上关于List上使用RichText场景:

RichText组件比较消耗内存资源,而且有一些重复使用RichText组件的场景下,比如在List下循环重复使用RichText时,会出现卡顿、滑动响应慢等现象。在这种情况下,推荐使用RichEditor组件。`

请问有List上使用RichEditor解析html的实例吗? 例如List上使用RichEditor解析。

HarmonyOS
2024-09-03 09:16:48
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
Heiang

参考demo如下:

class ArrayList { 
  text: string 
  color: ResourceStr 
  public clickEvent: () => void = () => { 
  } 
 
  constructor(text: string, color: ResourceStr) { 
    this.text = text 
    this.color = color 
  } 
  public onClick(event: () => void): ArrayList { 
    this.clickEvent = event 
    return this 
  } 
} 
@Entry 
@Component 
struct Index { 
  controller: RichEditorController = new RichEditorController(); 
  options: RichEditorOptions = { controller: this.controller }; 
  @State arrayList: Array<ArrayList> = [ 
    new ArrayList(",", "#16abf0").onClick(() => { 
      console.log("") 
    }), 
    new ArrayList("test", "#16abf0").onClick(() => { 
      console.log("test") 
    }), 
    new ArrayList("demo示例", "#ffc6131f").onClick(() => { 
      console.log("demo示例") 
    }), 
    new ArrayList("是否满足", "#16abf0").onClick(() => { 
      console.log("是否满足") 
    }) 
  ] 
  @Builder 
  my_builder(item: string) { 
    Column() { 
      Text(item) 
    } 
  } 
  build() { 
    Column() { 
      List() { 
        ForEach(this.arrayList, (item: ArrayList) => { 
          ListItem() { 
            Column() { 
              RichEditor(this.options) 
                .onReady(() => { 
                  this.controller.addTextSpan(item.text, 
                    { 
                      style: 
                      { 
                        fontColor: item.color, 
                        fontSize: 18, 
                      }, 
                      gesture: { 
                        onClick: () => { 
                          if (item.clickEvent) { 
                            item.clickEvent() 
                          } 
                        } 
                      } 
                    }) 
                }) 
            } 
          } 
        }) 
      } 
    } 
    .width("100%") 
    .height('100%') 
    .backgroundColor($r('sys.color.ohos_id_color_sub_background')) 
  } 
}
分享
微博
QQ
微信
回复
2024-09-03 15:12:54
相关问题
List展示服务端下发的HTML字符串
97浏览 • 1回复 待解决
HarmonyOS Web组件如何加载html字符串
389浏览 • 1回复 待解决
Web如何使用loadData加载复杂Html字符串
2114浏览 • 1回复 待解决
HarmonyOS字符串替换问题
494浏览 • 1回复 待解决
HarmonyOS 字符串显示异常
300浏览 • 1回复 待解决
检查字符串是否以给定的字符串开头
358浏览 • 1回复 待解决
检查字符串是否以给定的字符串结尾
285浏览 • 1回复 待解决
HarmonyOS $r 字符串替换问题
537浏览 • 1回复 待解决
HarmonyOS Hilog日志字符串长度限制
241浏览 • 1回复 待解决
HarmonyOS 如何解析json字符串
65浏览 • 1回复 待解决
HarmonyOS 字符串格式化异常
183浏览 • 1回复 待解决
HarmonyOS string类型的字符串截取
81浏览 • 1回复 待解决
HarmonyOS 字符串怎么手动加换行?
447浏览 • 1回复 待解决
字符串如何转为ArrayBuffer?
406浏览 • 1回复 待解决
ArrayBuffer怎样转字符串
368浏览 • 1回复 待解决
HarmonyOS 如何遍历包含emoji的字符串
253浏览 • 1回复 待解决