IOS中的方向更改时,忙碌指示器的大小已调整。有没有办法为忙碌指示器指定固定的高度和宽度?

最佳答案

您可以查看以下问题:IBM Worklight 6.0 - Does WL.BusyIndicator support text wrapping for iOS?

例如:

var busy = new WL.BusyIndicator(null, {
    text: "Ouverture de session",
    boxLength: 170 // Play with this value to change the size of the indicator 'box'.
});
busy.show();


但是,不幸的是,当更改为横向模式时,这不能很好地“翻译”。

您可以做的是:


查看其他指标解决方案,例如jQuery Mobile或jQuery插件提供的
在本机代码中检测方向更改,然后隐藏繁忙的对象并根据重新计算将其重新显示。


您可能应该选择第一个选项...
请注意,尽管这意味着您不能使用WL.BusyIndicator.show/hide。您需要使用插件提供的API。

07-24 19:15