AIR 3.3 /FlashCS5.5を使用してiOSおよびAndroid用のアプリをプログラミングしています。ここで、iOSデバイスでアプリのサイズが変更されないという問題が発生しました(ipod touch 4でテスト)。
これが私のコードです:
public function Main() {
this.addEventListener(Event.ADDED , Init, false, 0, true);
}
private function Init(e:Event) {
this.removeEventListener(Event.ADDED , Init);
stage.scaleMode = StageScaleMode.NO_SCALE;
stage.align = StageAlign.TOP_LEFT;
stage.addEventListener(Event.RESIZE , Resize, false, 0, true);
}
private function Resize(e:Event) {
stage.removeEventListener(Event.RESIZE, Resize);
var stageheight = Math.min(stage.fullScreenHeight, Screen.mainScreen.visibleBounds.height);
var stagewidth = Math.min(stage.fullScreenWidth, Screen.mainScreen.visibleBounds.width);
stage.stageHeight = Math.min(stagewidth, stageheight);
stage.stageWidth = Math.max(stagewidth, stageheight);
scaleFactor = stage.stageHeight / APP_ORG_HEIGHT;
NativeApplication.nativeApplication.systemIdleMode = SystemIdleMode.KEEP_AWAKE;
}
Androidデバイスでは動作しますが、テストデバイスでは動作しません。
ここに私のxml設定:
<initialWindow>
<systemChrome>standard</systemChrome>
<transparent>false</transparent>
<visible>true</visible>
<fullScreen>true</fullScreen>
<aspectRatio>landscape</aspectRatio>
<renderMode>gpu</renderMode>
<autoOrients>false</autoOrients>
</initialWindow>
<android>
<manifestAdditions>
<![CDATA[<manifest android:installLocation="auto">
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.WAKE_LOCK"/>
</manifest>]]>
</manifestAdditions>
</android>
<iPhone>
<InfoAdditions>
<![CDATA[<key>UIDeviceFamily</key><array><string>1</string></array><key>UIPrerenderedIcon</key><true/><key>UIApplicationExitsOnSuspend</key><true/>]]>
</InfoAdditions>
<requestedDisplayResolution>high</requestedDisplayResolution>
</iPhone>