钛加速器方向不会发生变化

发布于 2024-10-26 19:11:16 字数 699 浏览 1 评论 0原文

我在钛合金 appcelerator 中遇到了 orientationchange 问题。在选项卡之间移动时,在纵向和横向之间切换时不会触发 orientationchange 事件。景观。

这是我的代码

Titanium.Gesture.addEventListener('orientationchange', function(e){

    var alertDialog = Ti.UI.createAlertDialog({
        title: "Alert",
        message: "Orientation is "+  e.orientation,
        buttonNames: ['OK'],
        cancel:0
    });
    alertDialog.show();

});

这是重现步骤:

  1. 切换到选项卡2,然后进入横向模式(出现警报)。
  2. 切换回选项卡 1,将手机旋转至纵向模式(不出现警报)。
  3. 该事件不会发生。 (随后的事件照常触发(出现警报))

有人有解决方法的想法吗? 我需要它,因为我必须更改视图onorientationchange。 我正在使用 Titanium Appcelerator 1.2.2,移动版本 1.6,Api 2.2

I have a problem with orientationchange in titanium appcelerator. When moving between tabs, the orientationchange event is not fired when switching between portrait & landscape.

Here's my code

Titanium.Gesture.addEventListener('orientationchange', function(e){

    var alertDialog = Ti.UI.createAlertDialog({
        title: "Alert",
        message: "Orientation is "+  e.orientation,
        buttonNames: ['OK'],
        cancel:0
    });
    alertDialog.show();

});

Here's the reproduction steps:

  1. Switch to tab 2, and then enter landscape mode(alert appears).
  2. Switch back to tab 1, rotate phone into portrait mode(alert doesn't appear).
  3. The event does not occur. (Subsequent events fire as usual(alert appears))

Anyone have an idea on a work-around?
I need that because I have to change view onorientationchange.
I'm using Titanium Appcelerator 1.2.2, mobile version 1.6, Api 2.2

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

暖风昔人 2024-11-02 19:11:16
Ti.Gesture.addEventListener('orientationchange', function(e){

var alertDialog = Ti.UI.createAlertDialog({ 
    title: "Alert", message: "Orientation is "+ e.orientation, buttonNames: ['OK'], cancel:0 }); alertDialog.show();

});
Ti.Gesture.addEventListener('orientationchange', function(e){

var alertDialog = Ti.UI.createAlertDialog({ 
    title: "Alert", message: "Orientation is "+ e.orientation, buttonNames: ['OK'], cancel:0 }); alertDialog.show();

});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文