关闭 Flex Mobile 中的软键盘

发布于 2024-12-02 02:18:48 字数 131 浏览 2 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

陈年往事 2024-12-09 02:18:48

使用 Flex 4.6,您可以通过设置来关闭

stage.focus = null;

请在此处阅读更多信息:
在移动 Flex 应用程序中打开软键盘

With Flex 4.6, you can dismiss by setting

stage.focus = null;

Please read more here:
open soft keyboard in a mobile Flex application

客…行舟 2024-12-09 02:18:48

例如,假设您的 InteractiveObject 是一个 TextInput,那么您可以使用以下命令阻止它弹出:

private function onActivating(event:SoftKeyboardEvent):void 
{
           event.preventDefault();
}           


<s:TextInput softKeyboardActivating="onActivating(event)" />

或者您可以使用

<s:TextInput needsSoftKeyboard = "False"/>

编辑:

您可以使用以下命令将其发回:

监听事件,当您希望它关闭(例如按“enter”键),然后使用 setFocus 属性将焦点更改为另一个组件:

private function CloseKeyboard():void
{
hidesoftkeyboard.setFocus();
}`

<s:TextInput id="txtinput"/>
<s:Button id="hidesoftkeyboard" click=CloseKeyboard();>

更新

在 Flex 4.6 更新之后 - 记录了新的软键盘技术

For example, say your InteractiveObject is a TextInput, then you can keep it from popping up with the following:

private function onActivating(event:SoftKeyboardEvent):void 
{
           event.preventDefault();
}           


<s:TextInput softKeyboardActivating="onActivating(event)" />

Or you can use

<s:TextInput needsSoftKeyboard = "False"/>

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:

private function CloseKeyboard():void
{
hidesoftkeyboard.setFocus();
}`

<s:TextInput id="txtinput"/>
<s:Button id="hidesoftkeyboard" click=CloseKeyboard();>

UPDATE

Following the 4.6 update to Flex - there are new softkeyboard techniques chronicled here.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文