#鸿蒙通关秘籍#在鸿蒙开发中绑定自定义键盘有何注意事项?

HarmonyOS
5天前
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
墨香四溢EDIF

绑定自定义键盘时,需要用TextInput中的customKeyboard方法,将自定义键盘组件与输入框关联。要注意的是,自定义键盘采用覆盖原始界面的方式,不会对应用的原始界面进行压缩或上提。另外,自动关闭机制是在输入控件失去焦点时关闭自定义键盘。可以通过TextInputController.stopEditing手动控制键盘关闭。

typescript TextInput({ text: this.inputValue, placeholder: $r("app.string.placeholder"), controller: this.controller }) .type(InputType.Password) .customKeyboard(this.customKeyboardBuilder()) .height($r("app.integer.text_input_height")) .border(null) .margin({ top: $r("app.integer.common_margin_padding") })

分享
微博
QQ
微信
回复
5天前
相关问题
loaddata api注意事项
910浏览 • 1回复 待解决
ArkTS静态类型开发时的注意事项
2376浏览 • 1回复 待解决
HarmonyOS TextInput绑定自定义键盘问题
542浏览 • 1回复 待解决