アプリの起動時にTi.UI.orientation = Ti.UI.LANDSCAPE_LEFT
を使用していますが、それはランドスケープになりますが、回転アニメーションは短くなります。風景モードでチタンiPadアプリを起動するには?
これを避けるために、すでにランドスケープで起動する方法はありますか?それでもウィンドウのオリエンテーションの好みを提供する必要がありますが、私は、これは起動時に、あなたの問題を解決すると信じて
<iphone>
<orientations device="iphone">
<orientation>Ti.UI.LANDSCAPE_LEFT</orientation>
</orientations>
<orientations device="ipad">
<orientation>Ti.UI.LANDSCAPE_LEFT</orientation>
</orientations>
</iphone>
注:お使いのtiapp.xml
に以下を追加し
、以下を参照してくださいhttp://docs.appcelerator.com/platform/latest/#!/guide/Orientation-section-src-29004932_Orientation-Limitingorientationmodessupportedbyawindow – Garre