#鸿蒙学习大百科#如何设置RichEditor组件内的内容选中时部分背板高亮?

如何设置RichEditor组件内的内容选中时部分背板高亮?

HarmonyOS
2024-10-26 09:26:47
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
海底捞天王
@Entry
@Component
struct Index {
  controller: RichEditorController = new RichEditorController();
  options: RichEditorOptions = { controller: this.controller };
  build() {
    Column() {
      RichEditor(this.options)
        .onReady(() => {
          this.controller.addTextSpan('点击按钮在此处选中0-2位置的文本。', {
            style: {
              fontColor: Color.Black,
              fontSize: 15
            }
          })
        })
        .width(300)
        .height(60)
      Button('setSelection(0,2)', {
        buttonStyle: ButtonStyleMode.NORMAL
      })
        .height(30)
        .fontSize(13)
        .onClick(() => {
          this.controller.setSelection(0, 2)
        })
    }
    .width('100%')
    .height('100%')
    .justifyContent(FlexAlign.Center)
  }
}
分享
微博
QQ
微信
回复
2024-10-26 16:38:13
相关问题