应用程序屏幕向下移动(在iOS设备上)

时间:2015-06-25 07:17:30

标签: ios actionscript-3 flex air

重现的步骤:

  1. 我打开了社交登录表单(vk)
  2. 更改手机轮换。
  3. 点击"取消"在表格上并返回应用程序。
  4. 应用程序屏幕向下移动。
  5. 带有设置的ios上的AS3 / Adob​​e Air应用程序

    <fullScreen>true</fullScreen>
    <autoOrients>false</autoOrients>
    <renderMode>direct</renderMode>
    <visible>true</visible>
    <aspectRatio>portrait</aspectRatio>
    

    stage.scaleMode = StageScaleMode.NO_SCALE;
    stage.align = StageAlign.TOP_LEFT;
    

    我使用的是Flex SDK 4.6.0.23201和Air 17.0.0.123

    我可以禁用旋转吗?

2 个答案:

答案 0 :(得分:0)

您的应用程序displayState更改为NORMAL,您可以在应用程序激活时处理它。在flex中,我们已激活,当应用程序从其他应用程序返回时的事件。您可以通过

再次设置为全屏
systemManager.stage.displayState = StageDisplayState.FULL_SCREEN;

答案 1 :(得分:0)

android:theme="@android:style/Theme.Translucent.NoTitleBar.Fullscreen"

它的决定。