重现的步骤:
带有设置的ios上的AS3 / Adobe 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
我可以禁用旋转吗?
答案 0 :(得分:0)
您的应用程序displayState更改为NORMAL,您可以在应用程序激活时处理它。在flex中,我们已激活,当应用程序从其他应用程序返回时的事件。您可以通过
再次设置为全屏systemManager.stage.displayState = StageDisplayState.FULL_SCREEN;
答案 1 :(得分:0)
android:theme="@android:style/Theme.Translucent.NoTitleBar.Fullscreen"
它的决定。