鸿蒙os HarmonyOS arkts 程序中如何隐藏键盘
鸿蒙os HarmonyOS arkts 程序中隐藏键盘可以使用@ohos.inputMethod
模块
import inputMethod from '@ohos.inputMethod'
首先获取inputMethod.getController()实例,然后调用stopInputSession就可以隐藏键盘了
let im=inputMethod.getController()
im.stopInputSession()