Flex Air Android:禁用后退按钮

Flex Air Android : Disable back button

在一些现代设备中,Android 上的后退按钮是纯软件。 禁用后退按钮的经典方法对我不起作用Disable back button

是否有任何其他解决方案(清单或其他)来禁用 Android 上的后退按钮?

谢谢大家。

将此添加到您的 ViewApplication 的属性和脚本中:

<s:View xmlns:fx="http://ns.adobe.com/mxml/2009"
    ....
    ....
    backKeyPressed="view1_backKeyPressedHandler(event)">


    // Add this to your <fx:Script> area:
    protected function view1_backKeyPressedHandler(event:FlexEvent):void
    {
        event.preventDefault();
        event.stopImmediatePropagation();
    }