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

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

鸿蒙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

回到顶部