鸿蒙os HarmonyOS arkts 程序中如何隐藏键盘

发布于 1周前 作者 itying888 来自 分享

鸿蒙os HarmonyOS arkts 程序中隐藏键盘可以使用@ohos.inputMethod模块

import inputMethod from '@ohos.inputMethod'

首先获取inputMethod.getController()实例,然后调用stopInputSession就可以隐藏键盘了

let im=inputMethod.getController()
im.stopInputSession()
回到顶部