#鸿蒙学习大百科#如何监听RichEditor添加完成剪切前可触发的回调?

如何监听RichEditor添加完成剪切前可触发的回调?

HarmonyOS
2024-10-26 09:21:49
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
海底捞天王

通过onCut添加完成粘贴前可触发的回调。

RichEditor(this.options)
  .onReady(() => {
    this.controller.addTextSpan('对此处文本进行复制及粘贴操作可触发对应回调。', {
      style: {
        fontColor: Color.Black,
        fontSize: 15
      }
    })
  })
  .onCut(() => {
    this.controller1.addTextSpan('触发onCut回调\n', {
      style: {
        fontColor: Color.Gray,
        fontSize: 10
      }
    })
  })
  .width(300)
  .height(70)
分享
微博
QQ
微信
回复
2024-10-26 16:39:31
相关问题