代号一-Javascript端口中的锁定屏幕方向

时间:2018-11-24 21:32:50

标签: codenameone

假设我的代号一个Web应用程序应该在移动设备上运行,我试图将其方向锁定为纵向。

我的问题是,以下构建提示不会强制以纵向模式使用Web应用程序:

javascript.manifest.orientation=portrait

我想念什么吗?

我还尝试了以下本机界面,但未成功:

(function (exports) {

    var o = {};

    o.lockPortraitOrientation_ = function (callback) {
        // Screen Orientation API, https://w3c.github.io/screen-orientation/#examples
        screen.orientation.lock('portrait');
        callback.complete();
    };

    o.isSupported_ = function (callback) {
        callback.complete(true);
    };

    exports.cool_teammate_apps_frontend_NativeUtilities = o;

})(cn1_get_native_interfaces());

1 个答案:

答案 0 :(得分:1)

您在兼容性表here中测试过的浏览器吗?

假定对本机代码尝试使用以下语法:

screen.lockOrientationUniversal = screen.lockOrientation || screen.mozLockOrientation || screen.msLockOrientation;

if (screen.lockOrientationUniversal("portrait-primary")) {
  // orientation was locked
} else {
  // orientation lock failed
}

我将检查是否可以使Display定向调用映射到这些API。