鸿蒙os HarmonyOS arkts 程序中如何隐藏键盘
鸿蒙os HarmonyOS arkts 程序中隐藏键盘可以使用@ohos.inputMethod
模块
import inputMethod from '@ohos.inputMethod'
首先获取inputMethod.getController()实例,然后调用stopInputSession就可以隐藏键盘了
let im=inputMethod.getController()
im.stopInputSession()
更多关于鸿蒙os HarmonyOS arkts 程序中如何隐藏键盘的实战系列教程也可以访问 https://www.itying.com/category-93-b0.html