#鸿蒙学习大百科#如何监听RichEditor添加输入法输入内容前和完成输入后可触发的回调?

如何监听RichEditor添加输入法输入内容前和完成输入后可触发的回调?

HarmonyOS
2024-10-26 09:20:19
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
自封的不算
RichEditor(this.options)
  .onReady(() => {
    this.controller.addTextSpan('输入法输入内容前,触发回调。\n输入法完成输入后,触发回调。' , {
      style: {
        fontColor: Color.Black,
        fontSize: 15
      }
    })
  })
  .aboutToIMEInput((value: RichEditorInsertValue) => {
    this.controller1.addTextSpan('输入法输入内容前,触发回调:\n'+JSON.stringify(value), {
      style: {
        fontColor: Color.Gray,
        fontSize: 10
      }
    })
    return true;
  })
  .onIMEInputComplete((value: RichEditorTextSpanResult) => {
    this.controller1.addTextSpan('输入法完成输入后,触发回调:\n'+ JSON.stringify(value), {
      style: {
        fontColor: Color.Gray,
        fontSize: 10
      }
    })
    return true;
  })
  .width(300)
  .height(50)
Text('查看回调内容:').fontSize(10).fontColor(Color.Gray).width(300)
RichEditor(this.options1)
  .width(300)
  .height(70)
分享
微博
QQ
微信
回复
2024-10-26 16:45:05
相关问题
如何监听输入法输入内容变化?
286浏览 • 1回复 待解决
HarmonyOS如何监听输入法显示隐藏
451浏览 • 1回复 待解决
输入法编程接口吗?
4620浏览 • 1回复 待解决
小程序输入法键盘光标问题
210浏览 • 1回复 待解决
如何取消订阅输入法文本内容变化
313浏览 • 1回复 待解决