关闭 Flex Mobile 中的软键盘
Flex InteractiveObject
有一个 requestSoftKeyboard()
方法,可以弹出软键盘。
我怎样才能做相反的事情并将其寄回?
谢谢。
The Flex InteractiveObject
has has a requestSoftKeyboard()
method that pops up the Soft Keyboard.
How can I do the opposite and send it back?
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 Flex 4.6,您可以通过设置来关闭
请在此处阅读更多信息:
在移动 Flex 应用程序中打开软键盘
With Flex 4.6, you can dismiss by setting
Please read more here:
open soft keyboard in a mobile Flex application
例如,假设您的 InteractiveObject 是一个 TextInput,那么您可以使用以下命令阻止它弹出:
或者您可以使用
编辑:
您可以使用以下命令将其发回:
监听事件,当您希望它关闭(例如按“enter”键),然后使用 setFocus 属性将焦点更改为另一个组件:
更新
在 Flex 4.6 更新之后 - 记录了新的软键盘技术
For example, say your InteractiveObject is a TextInput, then you can keep it from popping up with the following:
Or you can use
EDIT:
You can send it back with the following:
Listen for the event when you want it to close (like hitting the "enter" key) and then use the setFocus property to change the focus to another component:
UPDATE
Following the 4.6 update to Flex - there are new softkeyboard techniques chronicled here.