如何在 Titanium appcelerator 5.0.2 中自定义方向

how to customize the orientation in Titanium appcelerator 5.0.2

我想一直修复人像模式 我在titanium sdk 4试过了,代码是

if (Ti.Platform.osname == 'android'){
    Ti.Gesture.addEventListener('orientationchange', function(e) 
        {           
            Ti.Android.currentActivity.setRequestedOrientation(Ti.Android.SCREEN_ORIENTATION_PORTRAIT);
        });
}

它不适用于 titanium sdk 5.0.2

我们有专门关于锁定方向的指南:

https://appcelerator.github.io/appc-docs/latest/#!/guide/Orientation