选项卡应用于tianium的横向模式

时间:2015-10-20 10:42:13

标签: ios titanium

我正在使用tabGroup进行应用程序。

然而,当我旋转设备屏幕时没有改变,即使我在tiapp.xml中这样设置

是否无法旋转标签应用程序?

<iphone>
    <orientations device="iphone">
        <orientation>Ti.UI.PORTRAIT</orientation>
        <orientation>Ti.UI.LANDSCAPE_LEFT</orientation>
        <orientation>Ti.UI.LANDSCAPE_RIGHT</orientation>
    </orientations>
    <orientations device="ipad">
        <orientation>Ti.UI.PORTRAIT</orientation>
        <orientation>Ti.UI.UPSIDE_PORTRAIT</orientation>
        <orientation>Ti.UI.LANDSCAPE_LEFT</orientation>
        <orientation>Ti.UI.LANDSCAPE_RIGHT</orientation>
    </orientations>
</iphone>

2 个答案:

答案 0 :(得分:1)

尝试在窗口属性中提供orientationModes,例如。

var win1 = Ti.UI.createWindow({
    backgroundColor : 'red',
    orientationModes : [Ti.UI.LANDSCAPE_LEFT, Ti.UI.LANDSCAPE_RIGHT, Ti.UI.PORTRAIT]
});

它对我有用。

答案 1 :(得分:0)

<plist><dict>部分

中设置tiapp.xml中的方向
<key>UISupportedInterfaceOrientations~iphone</key>
            <array>
                <string>UIInterfaceOrientationPortrait</string>
            </array>
            <key>UISupportedInterfaceOrientations~ipad</key>
            <array>
                <string>UIInterfaceOrientationPortrait</string>
                <string>UIInterfaceOrientationPortraitUpsideDown</string>
                <string>UIInterfaceOrientationLandscapeLeft</string>
                <string>UIInterfaceOrientationLandscapeRight</string>
            </array>