打开社交网络的原生模态窗口(并在横向上旋转iOS设备)并再次关闭它。应用仍然是纵向的,因为它被设计为,但视口向下移动大约一半的屏幕(496像素,准确地说:在游戏中心覆盖后面,舞台旋转成景观,所以只有前640个px (屏幕宽度)可见。使用:
<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; 应用程序应保持纵向。我能做什么?